我正在开发一个基于音频的应用程序。音频在背景中播放,但当曲目发生变化时,它就会停止。当我再次打开应用程序时,它会继续播放下一首曲目。
我在我的应用中使用音频流媒体
当应用程序处于前台时,一切都很正常。请帮我一下提前谢谢。
您必须将Required background modes
模式添加到info.plist
并添加模式App plays audio
。
尝试在应用程序代理-中添加这些行
//enable remote control event for app
if([[UIApplication sharedApplication] respondsToSelector:@selector(beginReceivingRemoteControlEvents)])
[[UIApplication sharedApplication] beginReceivingRemoteControlEvents];
// allows you to play in the background when app is suspended in iOS4
[[AVAudioSession sharedInstance] setDelegate: self];
[[AVAudioSession sharedInstance] setCategory: AVAudioSessionCategoryPlayback error:nil];