我正在开发一个自定义警报应用程序,并希望在警报播放后立即在我的应用程序中使用振动,我使用了 AudioToolbox 并使用了以下代码:
AudioServicesPlayAlertSound(SystemSoundID(kSystemSoundID_Vibrate))
它有效,但我想在我的应用程序中持续振动。
有什么方法可以实现吗?
Best Answer-推荐答案 strong>
您将不得不重复您的振动请求。
NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval: 1.0 target: self selectorselector(repeat userInfo: nil repeats:NO];
-(void)repeatid)sender{
AudioServicesPlayAlertSound(SystemSoundID(kSystemSoundID_Vibrate))
}
关于ios - AudioServicesPlaySystemSound(kSystemSoundID_Vibrate),我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/36328964/
|