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

IOS Background 之 Background Fetch

时间:2016-01-16 09:41:52      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:

http://www.ithao123.cn/content-1363653.html

定期更新数据的app,比如及时通信类,微博等app

设置->通用->后台应用程序刷新。

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions方法中添加:
[[UIApplication sharedApplication] setMinimumBackgroundFetchInterval:UIApplicationBackgroundFetchIntervalMinimum];
MinimumBackgroundFetchInterval 参数值是两次Fetch时间间隔,不能保证每隔这个时间间隔都会调用。这里设置为 UIApplicationBackgroundFetchIntervalMinimum,意思是尽可能频繁的调用我们的Fetch方法。

二,增加实现Fetch方法
- (void)application:(UIApplication *)application performFetchWithCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler{};
每次系统Fetch时都会调用该方法,我 们可以在该方法中做刷新数据等操作,操作执行完成以后要调用completionHandlerblock(),比 如:completionHandler(UIBackgroundFetchResultNewData);文档中说系统会根据 completionHandler(执行的时间)来估计此次Fetch的耗电等。如果耗时耗电比较多,可能会降低被调用的次数。但这个方法也不是不限时 执行的,说是有30s的时间来执行操作。completionHandler有三个参数:
UIBackgroundFetchResultNewData 成功拉取数据
UIBackgroundFetchResultNoData 没有新数据
UIBackgroundFetchResultFailed 拉取数据失败或者超时

IOS Background 之 Background Fetch

标签:

原文地址:http://www.cnblogs.com/cb168/p/5134893.html

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