gpt4 book ai didi

ios - AudioServicesPlaySystemSound(kSystemSoundID_Vibrate)

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:54:02 24 4
gpt4 key购买 nike

我正在开发一个自定义闹钟应用程序,希望在闹钟响起后立即在我的应用程序中使用振动,我已经使用了 AudioToolbox 并使用了以下代码:

AudioServicesPlayAlertSound(SystemSoundID(kSystemSoundID_Vibrate))

它有效,但我想在我的应用程序中持续运行振动。

有什么可能的方法来实现这个吗??

最佳答案

您将不得不重复您的振动请求。

NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval: 1.0 target: self selector:@selector(repeat:) userInfo: nil repeats:NO];

-(void)repeat:(id)sender{

AudioServicesPlayAlertSound(SystemSoundID(kSystemSoundID_Vibrate))

}

关于ios - AudioServicesPlaySystemSound(kSystemSoundID_Vibrate),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36328964/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com