※ Introducing WatchKit for watchOS 2 の中で一般にも公開されている内容です
Taptic Engine(バイブ機能のようなもの)のAPIがようやく公開されましたね。watchOS 2から利用可能です。
WKInterfaceDevice.currentDevice().playHaptic(type: WKHapticType)
type
には下記の値を設定できます。
enum WKHapticType : Int {
case Notification
case DirectionUp
case DirectionDown
case Success
case Failure
case Retry
case Start
case Stop
case Click
}
サンプルコード
リンク
- Introducing WatchKit for watchOS 2 - WWDC 2015 Video
- WKInterfaceDevice Class Reference