在Swift中使用iPhone上的振动的所有教程如下所示:
import AudioToolBox ... AudioServicesPlayAlertSound(SystemSoundID(kSystemSoundID_Vibrate))
但我无法导入AudioToolBox库.
我收到错误:
Could not build Objective-C module “AudioToolBox”
有没有人已经找到了这样做的方法?
解决方法 你可以产生触觉和听觉反馈,使用:WKInterfaceDevice.currentDevice().playHaptic(.Click)
“点击”是您可以选择的“案例”(振动/哔哔声类型)之一,CFR:
enum WKHapticType : Int { case Notification case DirectionUp case DirectionDown case Success case Failure case Retry case Start case Stop case Click }
这仅适用于设备,而不适用于模拟器.
总结以上是内存溢出为你收集整理的xcode – 如何在Apple Watch OS 2上触发振动?全部内容,希望文章能够帮你解决xcode – 如何在Apple Watch OS 2上触发振动?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)