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

iOS 后台退出app时不执行applicationWillTerminate的临时解决方法

时间:2015-11-23 21:42:01      阅读:883      评论:0      收藏:0      [点我收藏+]

标签:

- (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.
    //实现一个可以后台运行几分钟的权限, 当用户在后台强制退出程序时就会走applicationWillTerminate 了.
    [[UIApplication sharedApplication] beginBackgroundTaskWithExpirationHandler:nil];
    
}

 

- (void)applicationWillTerminate:(UIApplication *)application {
    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
    NSString * AddressBookIndex = @"AddressBook_index";
    NSString * AddressBookDataArray = @"AddressBook_dataArray";
    NSString * AddressBookPhonePerson = @"AddressBook_Person";
    [[NSUserDefaults standardUserDefaults] removeObjectForKey:AddressBookIndex];
    [[NSUserDefaults standardUserDefaults] removeObjectForKey:AddressBookDataArray];
    [[NSUserDefaults standardUserDefaults] removeObjectForKey:AddressBookPhonePerson];
    
}

 

iOS 后台退出app时不执行applicationWillTerminate的临时解决方法

标签:

原文地址:http://www.cnblogs.com/levy/p/4989630.html

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