zoukankan      html  css  js  c++  java
  • iOS 后台退出app时不执行applicationWillTerminate的临时解决方法

    - (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];
        
    }
    
  • 相关阅读:
    Android的startActivityForResult()与onActivityResult()与setResult()参数分析,activity带参数的返回
    git stash 保存当前工作状态
    vim diff 的使用
    git pull 命令
    java 开发环境安装
    vim 处理换行符
    git 操作分支
    git 操作远程仓库地址
    vim 宏的使用
    Chrome 调试技巧
  • 原文地址:https://www.cnblogs.com/levy/p/4989630.html
Copyright © 2011-2022 走看看