iPhone音频在模拟器上播放,但在设备上不播放
以下代码在模拟器上播放良好,但音频在实际设备上无法播放。我尝试过 aif、wav 和 mp3 ...这三个都具有相同的行为。 请提出可能有什么问题。
SystemSoundID aSound;
AudioServicesCreateSystemSoundID(CFBundleCopyResourceURL(CFBundleGetMainBundle(),CFSTR("drop"), CFSTR("wav"), NULL), &aSound);
AudioServicesPlaySystemSound(aSound);
The following code plays well on the simulator but the audio doesnt play on the actual device. I have tries aif, wav and mp3 ... all three with the same behaviour.
Please sugest what could be wrong.
SystemSoundID aSound;
AudioServicesCreateSystemSoundID(CFBundleCopyResourceURL(CFBundleGetMainBundle(),CFSTR("drop"), CFSTR("wav"), NULL), &aSound);
AudioServicesPlaySystemSound(aSound);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该死!我意识到由于某种原因,我的设备中没有应用程序正在播放音频!重新启动有效。
Damn! I realized that for some reason, no app in my device was playing an audio! Reboot worked.