码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2017-06-06 01:10:13      阅读:1067      评论:0      收藏:0      [点我收藏+]

标签:too   etc   ant   pos   ios   后台播放   防止   date   clear   

 

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

技术分享 分类:
 

目录(?)[+]

 

1、创建播放器时创建AVAudioSession

[objc] view plain copy
  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时添加下面代码

 

[objc] view plain copy
  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. }  

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

 

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

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

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

标签:too   etc   ant   pos   ios   后台播放   防止   date   clear   

原文地址:http://www.cnblogs.com/ios4app/p/6947625.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!