以编程方式 silent/vibrate 使用 swift2 的 iOS 设计?
programmatically silent/vibrate an iOS devise using swift2?
我是一名新开发人员,想知道如何通过代码 (swift2
) silent/vibrate
一个 IOS 设备,我不在乎它是否需要 私人 API。请帮忙。
您需要导入系统声音服务
import AudioToolbox.AudioServices
然后就可以播放震动提示了"sound"
AudioServicesPlayAlertSound(SystemSoundID(kSystemSoundID_Vibrate))
可以在 Apple 文档中找到更多信息:
https://developer.apple.com/library/prerelease/ios/documentation/AudioToolbox/Reference/SystemSoundServicesReference/index.html
我是一名新开发人员,想知道如何通过代码 (swift2
) silent/vibrate
一个 IOS 设备,我不在乎它是否需要 私人 API。请帮忙。
您需要导入系统声音服务
import AudioToolbox.AudioServices
然后就可以播放震动提示了"sound"
AudioServicesPlayAlertSound(SystemSoundID(kSystemSoundID_Vibrate))
可以在 Apple 文档中找到更多信息: https://developer.apple.com/library/prerelease/ios/documentation/AudioToolbox/Reference/SystemSoundServicesReference/index.html