AVAudioPlayer 问题(如果设备被锁定,音乐文件不会在后台模式下播放)
Posted
技术标签:
【中文标题】AVAudioPlayer 问题(如果设备被锁定,音乐文件不会在后台模式下播放)【英文标题】:AVAudioPlayer issue (music file is not playing in background mode if the device is locked ) 【发布时间】:2013-11-13 16:48:01 【问题描述】:如果设备未锁定,则音乐在后台播放。我已将代码粘贴到 .Plist 文件中,这是我使用的代码
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *path = [documentsDirectory stringByAppendingPathComponent:saveFileName];
NSURL *url1 = [[NSURL alloc] initFileURLWithPath: path];
appdelegate.sharedplayer=[[AVAudioPlayer alloc] initWithContentsOfURL:url1 error:NULL];
[[AVAudiosession sharedInstance] setCategory:AVAudioSessionCategoryPlayback error:nil];
[[AVAudioSession sharedInstance] setActive: YES error: nil];
[[UIApplication sharedApplication] beginReceivingRemoteControlEvents];
[appdelegate.sharedplayer setVolume:appdelegate.volumeDelegate];
[appdelegate.sharedplayer play];
【问题讨论】:
【参考方案1】:当设备被密码锁定时,Apple iOS 会限制数据访问。 所以你将 NSDocumetDirectory 转换为 NSData 的歌曲。并分配 AVAudioPlayer 它工作。
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *path = [documentsDirectory stringByAppendingPathComponent:saveFileName];
NSURL *url1 = [[NSURL alloc] initFileURLWithPath: path];
NSData *data=[[NSData alloc]initWithContentsOfURL:url1];
appdelegate.sharedplayer=[[AVAudioPlayer alloc] initWithData:data error:nil];
[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback error:nil];
[[AVAudioSession sharedInstance] setActive: YES error: nil];
[[UIApplication sharedApplication] beginReceivingRemoteControlEvents];
[appdelegate.sharedplayer setVolume:appdelegate.volumeDelegate];
[appdelegate.sharedplayer play];
【讨论】:
【参考方案2】:您需要对 plist 文件进行一些更改。
设置您的应用程序不在后台运行 b-设置后台模式为App播放音频
在AppDelege
中使用此代码
NSError *setCategoryErr = nil;
NSError *activationErr = nil;
[[AVAudioSession sharedInstance] setCategory: AVAudioSessionCategoryPlayback error:&setCategoryErr];
[[AVAudioSession sharedInstance] setActive:YES error:&activationErr];
【讨论】:
Sport 我按照你说的做了,我将你发送的代码粘贴到我的应用程序 delegate.m DidEnterBackground 和 DidFinishLaunching WithOptions 以及 .Plist 文件中,它不起作用 “Sport”:Selvam 建议的解决方案工作正常,但对于音乐播放器,我们需要在后台运行,但密码锁定不允许我们从应用程序文件夹中检索文件【参考方案3】:尝试在你的 project.plist 中设置它
【讨论】:
以上是关于AVAudioPlayer 问题(如果设备被锁定,音乐文件不会在后台模式下播放)的主要内容,如果未能解决你的问题,请参考以下文章
如何启用 MPMediaItemArtwork 下一个/上一个按钮?
iPhone 锁定时,AVAudioPlayer 不在后台播放
即使类别是 AVAudioSessionCategoryPlayback,AVAudioPlayer 也会在屏幕锁定时停止播放