在 iPhone 应用程序中播放连续声音
我有一个 iPhone 应用程序,它要求我在应用程序的整个生命周期内播放循环的 mp3 声音。
但根据用户执行的一些操作,该 mp3 应该停止/暂停 while &另一个 mp3 应该播放 &那么这个 mp3 应该会再次恢复播放。
我还没有在 iPhone 上真正使用过任何音频 API,我只是使用 AudioToolbox 在按钮点击时播放声音,仅此而已。
那么你们建议我应该做什么。 有什么指点吗...?建议......?
I have an iPhone application which requires me to play a looping mp3 sound during the entire lifetime of app.
But based on some actions performed by user this mp3 should stop/pause for while & another mp3 should play & then this mp3 should resume playing again.
I havent really used any audio API on iPhone yet, I've just used AudioToolbox for playing sounds on button taps thats all.
So what do you guys recommend I should do.
Any pointers...? suggestions....?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如我在这篇文章中所写的,您可以使用
AVAudioPlayer
代码摘录:
您可以通过以下方式暂停它:
just as I wrote in this post, you can use
AVAudioPlayer
code extract:
and you can pause it with: