WatchKit reference似乎沒有提及它。我錯過了什麼嗎?或者是否真的無法在Apple Watch應用程序中實現搖動手勢?如何在Apple Watch應用程序中實現搖動手勢?
以下是擺動姿態實現對iOS的一個典型的例子:
// MARK: Gestures
override func motionEnded(motion: UIEventSubtype, withEvent event: UIEvent) {
if(event.subtype == UIEventSubtype.MotionShake) {
// do something
}
}
您可以使用coreMotion來獲取移動。 我在我的Github上構建這個[簡單封裝](https://github.com/ezefranca/WatchShaker)。 – 2017-12-13 12:55:39