iOS无限后台任务(后台长期网络请求任务)

转自:http://blog.csdn.net/pz0605/article/details/49719207

根据苹果文档中关于后台执行的描述,任何app都有10分钟左右的后台任务执行时间。 10分钟后,app会被iOS强行挂起。

但是,有5类app允许有“无限的”后台运行时间:

1.  Audio。

2.  Location/GPS。

3.  VoIP。

4.  Newsstand。

5.  Exernal Accessory 。

你可以将任何app声明为上述5种类型以获得无限的后台运行时间,但当你提交app到App Store时,苹果会审查你的app,一旦发现你“滥用”了后台API,你的app将被拒绝。

当然,对于企业开发而言,不存在“滥用”的问题——企业app可以通过OTA部署,不经过苹果商店审查。

在企业部署中,你可以将一个app声明为VoIP,但这个程序根本和VoIP无关,我们的目的只是为了让iOS给我们无限后台执行的权限。声明过程是在app的Info.plist文件中加入以下key:

UIBackgroundModes

voip

我测试了以下代码:

[objc]  view plain  copy
  1. - (void)applicationDidEnterBackground:(UIApplication *)application  
  2. {  
  3. //    // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.  
  4. //    // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.  
  5. //    bgTask = [application beginBackgroundTaskWithExpirationHandler:^{  
  6. //        // Clean up any unfinished task business by marking where you  
  7. //        // stopped or ending the task outright.  
  8. //        [application endBackgroundTask:bgTask];  
  9. //        bgTask = UIBackgroundTaskInvalid;  
  10. //    }];  
  11. //      
  12. //    // Start the long-running task and return immediately.  
  13. //    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{  
  14. //          
  15. //        // Do the work associated with the task, preferably in chunks.  
  16. //        // your code  
  17. //        NSLog(@" %f",application.backgroundTimeRemaining);  
  18. //        [application endBackgroundTask:bgTask];  
  19. //        bgTask = UIBackgroundTaskInvalid;  
  20. //    });  
  21.       
  22.     [self backgroundHandler];  
  23.       
  24. }  
  25.   
  26. - (void)backgroundHandler {  
  27.       
  28.     NSLog(@"### -->backgroundinghandler");  
  29.     UIApplication *app = [UIApplication sharedApplication];  
  30.     bgTask = [app beginBackgroundTaskWithExpirationHandler:^{  
  31.         dispatch_async(dispatch_get_main_queue(),^{  
  32.             if( bgTask != UIBackgroundTaskInvalid){  
  33.                 bgTask = UIBackgroundTaskInvalid;  
  34.             }  
  35.         });  
  36.          NSLog(@"====任务完成了。。。。。。。。。。。。。。。===>");  
  37.        // [app endBackgroundTask:bgTask];  
  38.          
  39.     }];  
  40.       
  41.     // Start the long-running task  
  42.     dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{  
  43.         while (true) {  
  44.   
  45.             [HttpTool postWithPath:@"http://192.168.20.215:8080/v1/email/login" params:@{@"email":@"[email protected]",@"password":@"85252"} success:^(id JSON) {  
  46.                 // code  
  47.                 NSLog(@"success:%@",JSON);  
  48.             } failure:^(NSError *error) {  
  49.                 //  
  50.                 NSLog(@"error:%@",error.userInfo);  
  51.             }];  
  52.             sleep(5);  
  53.         }  
  54.   
  55.     });  
  56. }  


通过测试,我获得了“无限的”后台执行时间。我不知道你认为“无限”到底是多长时间,但在这个例子中,后台任务至少运行了55个小时以上,一直到我失去耐心停止测试。

你可能感兴趣的:(iOS无限后台任务(后台长期网络请求任务))