iOS - 后台保活

一、正常延长版保活(时间3min-40min不等)

1.定义定时器属性
   @property (nonatomic,strong)NSTimer *myTimer;
   @property (nonatomic,assign)UIBackgroundTaskIdentifier backgroundTaskIdentifier;

2.代码实现
- (void)applicationDidEnterBackground:(UIApplication *)application{
    self.backgroundTaskIdentifier = [application beginBackgroundTaskWithExpirationHandler:^{
      [application endBackgroundTask:self.backgroundTaskIdentifier];
      self.backgroundTaskIdentifier = UIBackgroundTaskInvalid;
    }];

//开启定时器 不断向系统请求后台任务执行的时间

     self.myTimer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(makeMoreTime) userInfo:nil repeats:YES];

     [self.myTimer fire]
}

-(void)makeMoreTime {

//如果系统给的剩余时间小于60秒 就终止当前的后台任务,再重新初始化一个后台任务,重新让系统分配时间,这样一直循环下去,保持APP在后台一直处于active状态。

MSULog(@"1 --- %.2f",[UIApplication sharedApplication].backgroundTimeRemaining);

if ([UIApplication sharedApplication].backgroundTimeRemaining < 60) {

    MSULog(@"Background Time Remaining = %.02f Seconds", [UIApplication sharedApplication].backgroundTimeRemaining);

    [[UIApplication sharedApplication] endBackgroundTask:self.backgroundTaskIdentifier];

    self.backgroundTaskIdentifier = [[UIApplication sharedApplication] beginBackgroundTaskWithExpirationHandler:^{

        MSULog(@"重新");
        [[UIApplication sharedApplication] endBackgroundTask:self.backgroundTaskIdentifier];

        self.backgroundTaskIdentifier = UIBackgroundTaskInvalid;

    }];
}

二、永久版保活

第一种方式:利用后台定位功能实现,此模式只适合选择“一直允许使用定位”,但是在新系统上会出现如果用户选择“使用app时定位”,就会出现退到后台时候,手机顶部会出现蓝色定位标识,影响用户体验;如果用户拒绝使用定位,就尴尬了,除地图类app,其他app不建议此方式;

第二种方式:利用voip功能实现,此模式适合音视频类app,常规类app也可以考虑使用;voip推送和apns推送是苹果两大推送方式,和apns推送不一样的地方在于,voip推送属于强制推送,用户无法拒绝此推送模式(故在iOS13后,苹果限制voip推送使用,但不影响后台保活);实现voip推送,然后后台默认播放铃声!

  1. 选择后台模式
图片.png
  2. 应用AVFoundation和<PushKit/PushKit.h>框架、定义属性
    @property (nonatomic, strong) AVAudioPlayer *player;
    @property (nonatomic,assign)UIBackgroundTaskIdentifier backgroundTaskIdentifier;

  3. 后台铃声代码实现
    - (AVAudioPlayer *)player{
        if (!_player){
            NSURL *url=[[NSBundle mainBundle]URLForResource:@"work5.mp3" withExtension:nil];
            _player = [[AVAudioPlayer alloc]initWithContentsOfURL:url error:nil];
            [_player prepareToPlay];
    
            _player.volume = 0.00;
            //一直循环播放
            _player.numberOfLoops = -1;
            [[AVAudioSession sharedInstance] setActive:YES error:nil];
            [[AVAudioSession sharedInstance]setCategory:AVAudioSessionCategoryPlayback withOptions:AVAudioSessionCategoryOptionMixWithOthers error:nil];
        }
        return _player;
    }

    - (void)startBgTask{
        UIApplication *application = [UIApplication sharedApplication];
        __block    UIBackgroundTaskIdentifier bgTask;
        bgTask = [application beginBackgroundTaskWithExpirationHandler:^{
            //这里延迟的系统时间结束
            [application endBackgroundTask:bgTask];
            NSLog(@"%f",application.backgroundTimeRemaining);
        }];
    }

    - (void)applicationDidEnterBackground:(UIApplication *)application{
        [self startBgTask];
        [self.player play];
    }

     4. voip代码实现(配置voip证书省略。。。。)

      -(void)startVoIPPush{
          NSString * identifier = [[NSBundle mainBundle] bundleIdentifier];

          if ([identifier isEqualToString:@"com.eccalc.chat2u"] && [[UIDevice currentDevice].systemVersion floatValue] >= 8.0) {
                //if([[UIDevice currentDevice].systemVersion floatValue] < 10)
          {
                PKPushRegistry * pushRegistry = [[PKPushRegistry alloc] initWithQueue:dispatch_get_main_queue()];
                pushRegistry.delegate = self;
                pushRegistry.desiredPushTypes = [NSSet setWithObject:PKPushTypeVoIP];
          //}else{
  //            UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];
  //            center.delegate = self;
  //            [center requestAuthorizationWithOptions:(UNAuthorizationOptionAlert + UNAuthorizationOptionSound)
  //                                  completionHandler:^(BOOL granted, NSError * _Nullable error) {
  //                                      // Enable or disable features based on authorization.
  //                                  }];
  //            [center getNotificationSettingsWithCompletionHandler:^(UNNotificationSettings * _Nonnull settings) {
  //            }];
          }
    
  //        UIUserNotificationType types = (UIUserNotificationTypeBadge | UIUserNotificationTypeSound | UIUserNotificationTypeAlert);
 //        UIUserNotificationSettings * notificationSettings = [UIUserNotificationSettings settingsForTypes:types categories:nil];
//        [[UIApplication sharedApplication]registerUserNotificationSettings:notificationSettings];
      }else{
          g_default removeObjectForKey:@"voipToken"];
      }
  }

  #pragma mark - PKPushRegistryDelegate
  -(void)pushRegistry:(PKPushRegistry *)registry didUpdatePushCredentials:(PKPushCredentials *)credentials forType:(PKPushType)type{
      if ([credentials.token length] == 0) {
  //        MSULog(@"voip token NULL");
          return;
      }
      NSString * voipToken;

      if (@available(iOS 13.0, *)) {
          voipToken = [self getHexStringForData:credentials.token];
      }else {    
          voipToken = [[[[credentials.token description] stringByReplacingOccurrencesOfString:@"<" withString:@""] stringByReplacingOccurrencesOfString:@">" withString:@""] stringByReplacingOccurrencesOfString:@" " withString:@""];
      }
      //voipToken 需要提交给服务器
      [g_default setObject:voipToken forKey:@"voipToken"];
  //    MSULog(@"voipToken:%@",voipToken);
  }

  #pragma mark - 但在iOS11.0之后,系统也提供了另外一个方法实现唤醒后的操作,此方法开启后,我项目iOS13以下机型会出现受收不到voip消息情况,所以注释了
  //- (void)pushRegistry:(PKPushRegistry *)registry didReceiveIncomingPushWithPayload:(PKPushPayload *)payload forType:(PKPushType)type withCompletionHandler:(void (^)(void))completion
  //{
  //    if (type != PKPushTypeVoIP) {
  //        return;
  //    }
  //    [self dealWithPushkitDidReceiveIncomingPushWithPayload:payload];
  //}
  #pragma mark - iOS8.0~iOS11.0是使用上面这个代理方法来实现唤醒后的操作,
  -(void)pushRegistry:(PKPushRegistry *)registry didReceiveIncomingPushWithPayload:(PKPushPayload *)payload forType:(PKPushType)type{
      if (type != PKPushTypeVoIP) {
          return;
      }
      //此处写相关处理逻辑
      //[self dealWithPushkitDidReceiveIncomingPushWithPayload:payload];   
  }
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,076评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,658评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,732评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,493评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,591评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,598评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,601评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,348评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,797评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,114评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,278评论 1 344
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,953评论 5 339
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,585评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,202评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,442评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,180评论 2 367
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,139评论 2 352

推荐阅读更多精彩内容