应用程序进入后台时开始播放音频文件

时间:2013-04-25 10:22:26

标签: ios background avaudioplayer

就像“Google地图”在后台导航一样。

我已经将“App播放音频”添加到“必需的背景模式”,但它不起作用。 怎么了?

以下是示例源代码:

-(void)applicationDidEnterBackground:(UIApplication *)application
{
UIDevice* device = [UIDevice currentDevice];

BOOL backgroundSupported = NO;

if ([device respondsToSelector:@selector(isMultitaskingSupported)])
{
    backgroundSupported = device.multitaskingSupported;
}
if (backgroundSupported && _bgTask==UIBackgroundTaskInvalid )
{
    UIApplication*    app = [UIApplication sharedApplication];

    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{

        while (app.applicationState==UIApplicationStateBackground && _bgTask!=UIBackgroundTaskInvalid)
        {
            [NSThread sleepForTimeInterval:3];
            [self playAudio];
        }

        [app endBackgroundTask:_bgTask];
        _bgTask = UIBackgroundTaskInvalid;
    });
}
}

-(void)playAudio {
        [[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback error:nil];
        [[AVAudioSession sharedInstance] setActive: YES error: nil];  

NSURL *audioFileLocationURL = [[NSBundle mainBundle] URLForResource:@"sound" withExtension:@"caf"];
NSError *error;
self.audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:audioFileLocationURL error:&error];
[self.audioPlayer setNumberOfLoops:-1];
self.audioPlayer.delegate = self;
 [self.audioPlayer prepareToPlay];
[self.audioPlayer play];
}

音频文件的网址可能来自网络,并会在队列中播放多个音频文件。

1 个答案:

答案 0 :(得分:0)

来自Apple's doc on the subject

  

因为你可能会开始任何后台任务   applicationDidEnterBackground:直到该方法之后才会运行   退出,您应该在之前请求额外的后台执行时间   开始那些任务。换句话说,先打电话   beginBackgroundTaskWithExpirationHandler:然后在a上运行任务   调度队列或辅助线程。

根据我自己的播放背景音频的经验,如果你没有请求额外的时间,你需要事先进行设置,以便[self.audioPlayer play]实际上是applicationDidEnterBackground中的第一行代码,否则系统在音频有机会启动并保持唤醒之前暂停应用程序。