codecamp

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

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导致的播放停止问题。


iOS 电话监听,后台工作问题
Xcode8/iOS10 升级后遇到的问题小结
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }