大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
这篇文章主要介绍了iOS怎样实现后台长时间运行,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。
创新互联建站专业为企业提供黎川网站建设、黎川做网站、黎川网站设计、黎川网站制作等企业网站建设、网页设计与制作、黎川企业网站模板建站服务,十载黎川做网站经验,不只是建网站,更提供有价值的思路和整体网络服务。
前言
一般APP在按下Home键被挂起后,这时APP的 backgroundTimeRemaining 也就是后台运行时间大约只有3分钟,如果在退出APP后,过十几二十二分钟或者更长时间再回到APP,APP就会回到刚打开时的状态,也就是首页;有的项目在被挂起后需要在后台运行一段时间,使有足够的时间来完成与服务器对接的操作,或者需要一直运行的需求;如果需要,则在APP被挂起后,申请后台,来延长后台运行时间。
APP申请后台运行的方式有几种:
播放音乐
定位
Newsstand downloads
fetch 等;
这里主要说下后台播放无声音乐(其实是不播放),采用哪种方式,对应勾选上图;我的项目中有音频播放需求,如果没有,那就找一个播放音频的理由,或者用其他方式实现。
实现
这里采用了两个单例:电话监控(XKTelManager)、后台运行(XKBGRunManager),电话监控可以忽略,视情况而用;采用单例是为了方便管理;
XKTelManager.h
#import
XKTelManager.m
#import "XKTelManager.h"#import "XKBGRunManager.h"#import
XKBGRunManager.h
#import
XKBGRunManager.m
#import "XKBGRunManager.h"///循环时间static NSInteger _circulaDuration = 60;static XKBGRunManager *_sharedManger;@interface XKBGRunManager()@property (nonatomic,assign) UIBackgroundTaskIdentifier task;///后台播放@property (nonatomic,strong) AVAudioPlayer *playerBack;@property (nonatomic, strong) NSTimer *timerAD;///用来打印测试@property (nonatomic, strong) NSTimer *timerLog;@property (nonatomic,assign) NSInteger count;@end@implementation XKBGRunManager{ CFRunLoopRef _runloopRef; dispatch_queue_t _queue;}+ (XKBGRunManager *)sharedManager{ static dispatch_once_t onceRunSingle; dispatch_once(&onceRunSingle, ^{ if (!_sharedManger) { _sharedManger = [[XKBGRunManager alloc]init]; } }); return _sharedManger;}/// 重写init方法,初始化音乐文件- (instancetype)init { if (self = [super init]) { [self setupAudioSession]; _queue = dispatch_queue_create("com.audio.inBackground", NULL); //静音文件 NSString *filePath = [[NSBundle mainBundle] pathForResource:@"****" ofType:@"mp3"]; NSURL *fileURL = [[NSURL alloc] initFileURLWithPath:filePath]; self.playerBack = [[AVAudioPlayer alloc] initWithContentsOfURL:fileURL error:nil]; [self.playerBack prepareToPlay]; // 0.0~1.0,默认为1.0 self.playerBack.volume = 0.01; // 循环播放 self.playerBack.numberOfLoops = -1; } return self;}- (void)setupAudioSession { // 新建AudioSession会话 AVAudioSession *audioSession = [AVAudioSession sharedInstance]; // 设置后台播放 NSError *error = nil; [audioSession setCategory:AVAudioSessionCategoryPlayback withOptions:AVAudioSessionCategoryOptionMixWithOthers error:&error]; if (error) { NSLog(@"Error setCategory AVAudioSession: %@", error); } NSLog(@"%d", audioSession.isOtherAudioPlaying); NSError *activeSetError = nil; // 启动AudioSession,如果一个前台app正在播放音频则可能会启动失败 [audioSession setActive:YES error:&activeSetError]; if (activeSetError) { NSLog(@"Error activating AVAudioSession: %@", activeSetError); }}/** 启动后台运行 */- (void)startBGRun{ [self.playerBack play]; [self applyforBackgroundTask]; ///确保两个定时器同时进行 dispatch_async(_queue, ^{ self.timerLog = [[NSTimer alloc] initWithFireDate:[NSDate date] interval:1 target:self selector:@selector(log) userInfo:nil repeats:YES]; self.timerAD = [[NSTimer alloc] initWithFireDate:[NSDate date] interval:_circulaDuration target:self selector:@selector(startAudioPlay) userInfo:nil repeats:YES]; _runloopRef = CFRunLoopGetCurrent(); [[NSRunLoop currentRunLoop] addTimer:self.timerAD forMode:NSDefaultRunLoopMode]; [[NSRunLoop currentRunLoop] addTimer:self.timerLog forMode:NSDefaultRunLoopMode]; CFRunLoopRun(); });}/** 申请后台 */- (void)applyforBackgroundTask{ _task =[[UIApplication sharedApplication] beginBackgroundTaskWithExpirationHandler:^{ dispatch_async(dispatch_get_main_queue(), ^{ [[UIApplication sharedApplication] endBackgroundTask:_task]; _task = UIBackgroundTaskInvalid; }); }];}/** 打印 */- (void)log{ _count = _count + 1; NSLog(@"_count = %ld",_count)}/** 检测后台运行时间 */- (void)startAudioPlay{ _count = 0; dispatch_async(dispatch_get_main_queue(), ^{ if ([[UIApplication sharedApplication] backgroundTimeRemaining] < 61.0) { NSLog(@"后台快被杀死了"); [self.playerBack play]; [self applyforBackgroundTask]; } else{ NSLog(@"后台继续活跃呢"); }///再次执行播放器停止,后台一直不会播放音乐文件 [self.playerBack stop]; });}/** 停止后台运行 */- (void)stopBGRun{ if (self.timerAD) { CFRunLoopStop(_runloopRef); [self.timerLog invalidate]; self.timerLog = nil; // 关闭定时器即可 [self.timerAD invalidate]; self.timerAD = nil; [self.playerBack stop]; } if (_task) { [[UIApplication sharedApplication] endBackgroundTask:_task]; _task = UIBackgroundTaskInvalid; }}@end
最后在 AppDelegate.m 对应的方法中,实现开启和停止后台运行即可!
感谢你能够认真阅读完这篇文章,希望小编分享的“iOS怎样实现后台长时间运行”这篇文章对大家有帮助,同时也希望大家多多支持创新互联,关注创新互联行业资讯频道,更多相关知识等着你来学习!