ios - AudioServicesPlaySystemSound(kSystemSoundID_Vibrate)
<p><p>我正在开发一个自定义警报应用程序,并希望在警报播放后立即在我的应用程序中使用振动,我使用了 AudioToolbox 并使用了以下代码:</p>
<pre><code>AudioServicesPlayAlertSound(SystemSoundID(kSystemSoundID_Vibrate))
</code></pre>
<p>它有效,但我想在我的应用程序中持续振动。</p>
<p>有什么方法可以实现吗?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您将不得不重复您的振动请求。</p>
<p>NSTimer *timer = ;</p>
<pre><code>-(void)repeat:(id)sender{
AudioServicesPlayAlertSound(SystemSoundID(kSystemSoundID_Vibrate))
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - AudioServicesPlaySystemSound(kSystemSoundID_Vibrate),我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/36328964/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/36328964/
</a>
</p>
页:
[1]