@property (nonatomic, assign) UIBackgroundTaskIdentifier backgroundTaskIdentifier;
- (void)applicationDidEnterBackground:(UIApplication *)application {
// 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.
// If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
if ( !_screen_locked ) { [self logoutLog:1]; }
// 标记一个长时间运行的后台任务将开始
// 通过调试发现,iOS给了我们额外的10分钟(600s)来执行这个任务。
@weakify(self);
self.backgroundTaskIdentifier = [application beginBackgroundTaskWithExpirationHandler:^(void) {
@strongify(self);
// 当应用程序留给后台的时间快要到结束时(应用程序留给后台执行的时间是有限的), 这个Block块将被执行
// 我们需要在次Block块中执行一些清理工作。
// 如果清理工作失败了,那么将导致程序挂掉
// 清理工作需要在主线程中用同步的方式来进行
[self endBackgroundTask];
}];
[self submitAllLog];
}
- (void)endBackgroundTask {
@weakify(self);
dispatch_async(dispatch_get_main_queue(), ^(void) {
@strongify(self);
if (self != nil){
// 停止定时器
[self.backgroundTimer invalidate];
// 每个对 beginBackgroundTaskWithExpirationHandler:方法的调用,必须要相应的调用 endBackgroundTask:方法。这样,来告诉应用程序你已经执行完成了。
// 也就是说,我们向 iOS 要更多时间来完成一个任务,那么我们必须告诉 iOS 你什么时候能完成那个任务。
// 也就是要告诉应用程序:“好借好还”嘛。
// 标记指定的后台任务完成
[[UIApplication sharedApplication] endBackgroundTask:self.backgroundTaskIdentifier];
// 销毁后台任务标识符
self.backgroundTaskIdentifier = UIBackgroundTaskInvalid;
}
});
}