我在后台播放 iTunes 音乐。我使用以下代码启动了播放“视频”的应用程序:
NSString* videoPath = [[NSBundle mainBundle] pathForResource:@"video" ofType:@"m4v"];
if (player) {
[player release];
player = nil;
}
player = [[MPMoviePlayerViewController alloc] initWithContentURL:[NSURL fileURLWithPath:videoPath]];
[self presentModalViewController:player animated:YES];
我将音频会话设置如下:
[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback error:nil];
[[AVAudioSession sharedInstance] setActive: YES error:nil];
当我的视频开始播放时,后台播放的 iPod 音乐将停止。视频播放完毕后如何恢复背景音乐?