1.首先:在targets里面設(shè)置這三個選項
837F58CA-4B11-4F94-8CCC-4D60E6A2013E.png
2.然后在AppDelegate中的進入后臺和返回工程里的代理實現(xiàn)如下的方法
- (void)applicationDidEnterBackground:(UIApplication *)application {
//進入后臺后和系統(tǒng)借用時間
[[UIApplication sharedApplication] beginBackgroundTaskWithExpirationHandler:nil];
} - (void)applicationWillEnterForeground:(UIApplication *)application {
//重新回來后歸還時間
[[UIApplication sharedApplication] endBackgroundTask:UIBackgroundTaskInvalid];
}