我有一个AVPlayer在背景模式下玩的问题,就像网路上无处不在的很多人一样.我已经做了我认为应该工作的事情,但仍然没有…我认为我的问题可能是我设置和使用我的AudiSession和AVPlayer的地方.
1)“音频”键位于我的Info.plist的UIBackgroundModes中@H_403_3@
2)在AppDelegate中设置这样的AudioSession(在didFinishLaunchingWithOptions中初始化):@H_403_3@
AVAudioSession *audio = [[AVAudioSession alloc]init]; ; ;
3)我使用AVPlayer(不是AVAudioPlayer)也在AppDelegate中实现. (在AfterFinishLaunchingWithOptions中,在AudioSession之后初始化),紧跟在AudioSession之后@H_403_3@
// Load the array with the sample file NSString *urlAddress = @"http://mystreamadress.mp3"; //Create a URL object. self.urlStream = [NSURL URLWithString:urlAddress]; self.player = [AVPlayer playerWithURL:urlStream]; //Starts playback [player play];
解决方法
顺便说一句,问题只在于模拟器.在iOS设备上可以正常工作