iOS AVPlayer 后台播放问题自动停止问题 防止应用被后台挂起方法

2018-06-14 14:02 更新

1、创建播放器时创建AVAudioSession

  1. AVAudioSession *session = [AVAudioSessionsharedInstance];  
  2. [session setCategory:AVAudioSessionCategoryPlaybackerror:nil];  
  3. [session setActive:YES error:nil];  

2、在plist文件中添加字段

Required background modes

在这里添加后台播放:

App plays audio or streams audio/video using AirPlay

3、在设备将要挂起app时添加下面代码

  1. - (void)applicationWillResignActive:(UIApplication *)application {  
  2.       
  3.     if ([MediaPlayerplayer].playStatus == MediaPlayerPlayStatusPlaying) {  
  4.         UIDevice* device = [UIDevicecurrentDevice];  
  5.         if ([devicerespondsToSelector:@selector(isMultitaskingSupported)]) {  
  6.             if(device.multitaskingSupported) {  
  7.                 if(device.multitaskingSupported) {  
  8.                     if ([MediaPlayerplayer].bgTaskId ==UIBackgroundTaskInvalid) {  
  9.                         [MediaPlayerplayer].bgTaskId = [[UIApplicationsharedApplication]beginBackgroundTaskWithExpirationHandler:NULL];  
  10.                     }  
  11.                 }  
  12.             }  
  13.         }  
  14.     }  
  15. }  

在设备进入前台时添加下面代码

  1. if ([MediaPlayerplayer].bgTaskId !=UIBackgroundTaskInvalid) {  
  2.         [[UIApplicationsharedApplication]endBackgroundTask:[MediaPlayerplayer].bgTaskId];  
  3.         [MediaPlayerplayer].bgTaskId =UIBackgroundTaskInvalid;  
  4.     }  

使用这三步基本可以保证在后台的长时间播放问题,且不会因为后台挂起APP导致的播放停止问题。


以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号