iOS:播放音效时音乐关闭

发布于 2024-12-28 20:58:30 字数 109 浏览 0 评论 0原文

我正在尝试播放一段简短的音乐,但是当 iPod 正在播放并且午餐时,应用程序音乐突然消失了!我怎样才能防止这种情况发生?我正在使用 AVAudioPlayer 来播放声音。 谢谢

I am trying to play a short music but when iPod is playing and lunch the application music goes off ! how can I prevent this situation ? I am using AVAudioPlayer to play sound .
thanks

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

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

发布评论

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

评论(1

ゝ杯具 2025-01-04 20:58:30

对于 AudioToolBox 和短效果声音,您可以使用 kAudioSessionCategory

AudioSessionInitialize(NULL, NULL, NULL, self);
UInt32 category = kAudioSessionCategory_AmbientSound;
AudioSessionSetProperty(kAudioSessionProperty_AudioCategory, sizeof(category), &category);  
AudioSessionSetActive(YES);

希望能有所帮助;)

For AudioToolBox and and short effect sounds you can use kAudioSessionCategory

AudioSessionInitialize(NULL, NULL, NULL, self);
UInt32 category = kAudioSessionCategory_AmbientSound;
AudioSessionSetProperty(kAudioSessionProperty_AudioCategory, sizeof(category), &category);  
AudioSessionSetActive(YES);

hopes can help ;)

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