iPhone:如何让音乐为使用 OpenAL 的应用程序播放?
我正在编写一个使用 OpenAL 的 iPhone 应用程序。 当应用程序启动时,背景音乐停止播放。
当我初始化 OpenAL 库时,音乐实际上停止播放。
我的问题是,有什么办法可以在使用OpenAL的同时让背景音乐播放吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将音频会话类别更改为 kAudioSessionCategory_AmbientSound,而不是默认的 kAudioSessionCategory_SoloAmbientSound。
您可以在 音频会话编程指南。 这是链接到文档的相关部分。
You need to change the Audio Session Category to kAudioSessionCategory_AmbientSound instead of kAudioSessionCategory_SoloAmbientSound which is the default.
You can find out more about it in the Audio Session Programming Guide. Here's a link to the relevant part of the documentation.