iOS 8中的自定义振动 - Swift

时间:2015-05-15 20:30:20

标签: swift ios8 vibration

我正在swift编写一个基于sprite kit的应用程序,需要使用振动进行简短的触觉反馈

所以首先我导入了AudioToolbox并使用了这个

AudioServicesPlayAlertSound(SystemSoundID(kSystemSoundID_Vibrate))

它运作良好但振动时间过长,无法控制此持续时间。

然后经过一番搜索,我在这里读到了Kevin Cao的答案:

Are there APIs for custom vibrations in iOS?

但遗憾的是AudioServicesPlaySystemSoundWithVibration专用功能仅在iOS 6中可用。

还有其他可能的方法吗?

1 个答案:

答案 0 :(得分:2)

您需要AudioServicesPlaySystemSoundWithVibration API。 但不幸的是,它是私密的,你无法发布你的应用程序:(

检查this blog postthis answer