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];
        
    }
    
  • 相关阅读:
    020-请你说一说app测试的工具
    栈的压入、弹出序列
    包含min函数的栈
    顺时针打印矩阵
    二叉树的镜像
    树的子结构
    链表中倒数第k个结点
    调整数组顺序使奇数位于偶数前面
    数值的整数次方
    矩形覆盖
  • 原文地址:https://www.cnblogs.com/levy/p/4989630.html
Copyright © 2011-2022 走看看