iPhone Dev:同时发出短声和振动

发布于 2024-09-06 10:13:33 字数 103 浏览 5 评论 0原文

有什么办法可以让手机播放短声的同时同时震动吗? 我发现了一些有关 AudioQueing 的内容,但我是新手,无法理解 AudioQueing 的整个过程。

来自德国的亲切问候

is there any way to play a short sound and let the phone vibrate at the same time?
I found something about AudioQueing, but I'm a newbie and cant wrap my head around that whole process of AudioQueing.

Kind regards from Germany

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你如我软肋 2024-09-13 10:13:33

是的。您的哪个部分有问题?播放声音、振动还是同时进行?要播放短声音,您可以使用 AVAudioPlayer 类。振动由以下代码触发:

AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);

此处描述,例如。

Yes. What part do you have problems with? Playing sounds, vibrating, or doing both at once? For playing short sounds you can use the AVAudioPlayer class. The vibration is triggered by the following code:

AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);

Described here, for example.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文