码迷,mamicode.com
首页 > 其他好文 > 详细

当程序进入后台时执行长时间代码

时间:2014-07-24 22:36:03      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   strong   io   re   c   

进入后台时,iOS给了我们10分钟的时间做一些事件处理。

AppDelegate.h:

1 #import <UIKit/UIKit.h>
2 
3 @interface AppDelegate : UIResponder <UIApplicationDelegate>
4 
5 @property (assign, nonatomic) UIBackgroundTaskIdentifier backgroundUpdateTask;
6 @property (strong, nonatomic) UIWindow *window;
7 
8 @end

AppDelegate.m修改:

 1 - (void)applicationDidEnterBackground:(UIApplication *)application
 2 {
 3     [self beingBackgroundUpdateTask];
 4     
 5     //需要在后台执行的代码
 6     //...
 7     
 8     [self endBackgroundUpdateTask];
 9 }
10 
11 - (void)beingBackgroundUpdateTask {
12     self.backgroundUpdateTask = [[UIApplication sharedApplication] beginBackgroundTaskWithExpirationHandler:^{
13         [self endBackgroundUpdateTask];
14     }];
15 }
16 
17 - (void)endBackgroundUpdateTask {
18     [[UIApplication sharedApplication] endBackgroundTask: self.backgroundUpdateTask];
19     self.backgroundUpdateTask = UIBackgroundTaskInvalid;
20 }

当程序进入后台时执行长时间代码,布布扣,bubuko.com

当程序进入后台时执行长时间代码

标签:style   blog   color   os   strong   io   re   c   

原文地址:http://www.cnblogs.com/Steak/p/3866342.html

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