美文网首页iOS 技术文章
AppDelegate中常用的代理方法回调的时机

AppDelegate中常用的代理方法回调的时机

作者: 爱掏蜂窝的熊 | 来源:发表于2015-10-21 22:45 被阅读4815次

    转载

    介绍

    本篇文章主要介绍一些UIApplicationDelegate中几个常用的代理方法 (回调方法)的调用时机。帮助你判断哪些方法到底放在哪个代理方法 (回调方法)中去实现。

    方法如下:

    • 当应用程序正常启动时(不包括已在后台转到前台的情况),调用此回调。launchOptions是启动参数,假如用户通过点击push通知启动的应用,(这是非正常启动的情况,包括本地通知和远程通知),这个参数里会存储一些push通知的信息。
    – (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions NS_AVAILABLE_IOS(3_0);
    
    • 当应用程序全新启动,或者在后台转到前台,完全激活时,都会调用这个方法。如果应用程序是以前运行在后台,这时可以选择刷新用户界面。
    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
    – (void)applicationDidBecomeActive:(UIApplication *)application;
    
    • 当应用从活动状态主动变为非活动状态的时候,应用程序时会调用这个方法。这可导致产生某些类型的临时中断(如传入电话呼叫或SMS消息)。或者当用户退出应用程序,它开始过渡到的背景状态。使用此方法可以暂停正在进行的任务,禁用定时器,降低OpenGL ES的帧速率。游戏应该使用这个方法来暂停游戏。
      调用时机可能有以下几种:锁屏,单击HOME键,下拉状态栏,双击HOME键弹出底栏等情况。
    // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
    // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
    // 当应用从活动状态主动变为非活动状态的时候
    – (void)applicationWillResignActive:(UIApplication *)application;
    
    • 这个方法已不再支持,可能会在以后某个版本中去掉。在iOS9中被别的方法取代了,不建议使用了。
    – (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url;
    

    替代为####

    这个方法在iOS9中被别的方法取代了,不建议使用了。

    // 当用户通过其它应用启动本应用时,会回调这个方法,url参数是其它应用调用openURL:方法时传过来的。
    – (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation NS_AVAILABLE_IOS(4_2);
    

    建议使用下面这个方法,替换掉##

     - (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<NSString*, id> *)options NS_AVAILABLE_IOS(9_0); // no equiv. notification. return NO if the application can't open for some reason
    
    • 当应用可用内存不足时,会调用此方法,在这个方法中,应该尽量去清理可能释放的内存。如果实在不行,可能会被强行退出应用。
    // try to clean up as much memory as possible. next step is to terminate app
    – (void)applicationDidReceiveMemoryWarning:(UIApplication *)application;
    
    • 当应用退出,并且进程即将结束时会调到这个方法,一般很少主动调到,更多是内存不足时是被迫调到的,我们应该在这个方法里做一些数据存储操作。
    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:
     – (void)applicationWillTerminate:(UIApplication *)application;
    
    • 当客户端注册远程通知时,会回调下面两个方法。
      如果成功,则回调第一个,客户端把deviceToken取出来发给服务端,push消息的时候要用。
      如果失败了,则回调第二个,可以从error参数中看一下失败原因。
     (1) - (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken NS_AVAILABLE_IOS(3_0);
    
    (2) - (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error NS_AVAILABLE_IOS(3_0);
    

    注意###

    注册远程通知使用如下方法:

    • 7.0及其以下版本的系统
    UIRemoteNotificationType type = UIRemoteNotificationTypeBadge|UIRemoteNotificationTypeAlert|UIRemoteNotificationTypeSound;
    [application registerForRemoteNotificationTypes:type];
    
    • 8.0及其以上版本的系统
    UIUserNotificationSettings *setting = [UIUserNotificationSettings settingsForTypes: (UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound | UIRemoteNotificationTypeAlert) categories:nil];
            [application registerUserNotificationSettings:setting];
    
    • 当应用在前台运行中,收到远程通知时(不会弹出系统通知界面),会回调这个方法。
      当应用在后台状态时,点击push消息启动应用,也会回调这个方法。
      当应用完全没有启动时,点击push消息启动应用,就不会回调这个方法。
    – (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo NS_AVAILABLE_IOS(3_0);
    
    • 当应用收到本地通知时会调这个方法,同上面一个方法类似。
      如果在前台运行状态直接调用
      如果在后台状态,点击通知启动时,也会回调这个方法
      当应用完全没有启动时,点击push消息启动应用,就不会回调这个方法。
    – (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification NS_AVAILABLE_IOS(4_0);
    
    • 当用户从前台状态转入后台时,调用此方法。使用此方法来释放资源共享,保存用户数据,无效计时器,并储存足够的应用程序状态信息,以便程序被终止后,将应用程序恢复到目前的状态。
      如果您的应用程序支持后台运行,这个方法被调用,否则调用applicationWillTerminate:用户退出。
    // 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.
    – (void)applicationDidEnterBackground:(UIApplication *)application NS_AVAILABLE_IOS(4_0);
    
    • 当应用在后台状态,将要进入到前台运行时,会调用此方法。
      如果应用不在后台状态,而是直接启动,则不会回调此方法。
    // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
    – (void)applicationWillEnterForeground:(UIApplication *)application NS_AVAILABLE_IOS(4_0);
    

    相关文章

      网友评论

        本文标题:AppDelegate中常用的代理方法回调的时机

        本文链接:https://www.haomeiwen.com/subject/eqlthttx.html