UIApplicationDelegate中常用的几个方法

来源:互联网 发布:飞鸟知鱼 编辑:程序博客网 时间:2024/05/23 16:18

本文的一些资料时参考(http://yanwt.iteye.com/blog/1933932)
另外本人也新增的一些常用的方法及加以编辑
本篇文章主要介绍一些UIApplicationDelegate中几个常用的回调方法的调用时机。
以帮助你判断哪些方法倒底放到哪个回调中去实现。

/** *  此方法基本已经弃用,改用下面方法 *   *  @param application   应用 */– (void)applicationDidFinishLaunching:(UIApplication *)application;----------/** *  当应用程序启动时(不包括已在后台的情况下转到前台),调用此回调。  *  launchOptions是启动参数,假如用户通过点击push通知启动的应用, *  这个参数里会存储一些push通知的信息。 *  NS_AVAILABLE_IOS(3_0) * *  @param application   应用 *  @param launchOptions 选项参数 * *  @return YES */– (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions;

/** * 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.(重新启动任何已暂停的任务(或尚未开始), * 而应用程序处于非活动状态。如果应用程序在后台,可以随意刷新用户界面。) *  * 当应用程序全新启动,或者在后台转到前台,完全激活时,都会调用这个方法。 * 如果应用程序是以前运行在后台,这时可以选择刷新用户界面 * *  @param application   应用 */– (void)applicationDidBecomeActive:(UIApplication *)application;----------    // 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./** *  当应用从活动状态主动到非活动状态的应用程序时会调用这个方法。 *  这可导致产生某些类型的临时中断(如传入电话呼叫或SMS消息)。 *  或者当用户退出应用程 序,它开始过渡到的背景状态。 *  使用此方法可以暂停正在进行的任务,禁用定时器,降低OpenGL ES的帧速率。 *  游戏应该使用这种方法来暂停游戏。 *  调用时机可能有以下几种:锁屏,按HOME键,下接状态栏,双击HOME键弹出低栏,等情况。 * *  @param application   应用 */- (void)applicationWillResignActive:(UIApplication *)application;

// Will be deprecated at some point, please replace with application:openURL:sourceApplication:annotation:/** *  此方法基本已经弃用,改用下面方法 */– (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url;----------/** *  当用户通过其它应用启动本应用时,会回调这个方法, * *  @param application       应用 *  @param url               其它应用调用openURL:方法时传过来的 *  @param sourceApplication 源应用 *  @param annotation        对象 * *  @return YES */ – (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation NS_AVAILABLE_IOS(4_2);

 /** *  当应用可用内存不足时,会调用此方法,在这个方法中 *  应该尽量去清理可能释放的内存。如果实在不行,可能会被强行退出应用 * *  @param application 应用 */ – (void)applicationDidReceiveMemoryWarning:(UIApplication *)application;

/** *   当应用退出,并且进程即将结束时会调到这个方法,一般很少主动调到,更多是内存不足时是被迫调到的,我们应该在这个方法里做一些数据存储操作。 */ – (void)applicationWillTerminate:(UIApplication *)application;

/** *  客户端注册远程通知时,成功后回调这个方法。 *  客户端把deviceToken取出来发给服务端,push消息的时候要用。 * *  @param application 应用 *  @param deviceToken 设备token */- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken NS_AVAILABLE_IOS(3_0);----------/** *   当客户端注册远程通知时 *   如果失败了,会回调这个方法。可以从error参数中看一下失败原因。 * *  @param application 应用 *  @param error       错误 */- (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error NS_AVAILABLE_IOS(3_0);// 注:注册远程通知使用如下方法:UIRemoteNotificationType t = UIRemoteNotificationTypeBadge|UIRemoteNotificationTypeAlert|UIRemoteNotificationTypeSound;[[UIApplication sharedApplication] registerForRemoteNotificationTypes:t];

This callback will be made upon calling -[UIApplication registerUserNotificationSettings:]. The settings the user has granted to the application will be passed in as the second argument./** *  调用完registerUserNotificationSettings:方法之后执行 *  即调用startToGetPushToken获取权限后调用 * *  @param application          应用 *  @param notificationSettings 通知方式 */ - (void)application:(UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings NS_AVAILABLE_IOS(8_0);

/** *  接收远程通知的时候调用此方法 *  当应用在前台运行中,收到远程通知时,会回调这个方法。 *   当应用在后台状态时,点击push消息启动应用,也会回调这个方法。 * *  @param application 应用 *  @param userInfo    通知信息 */– (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo NS_AVAILABLE_IOS(3_0);----------/** *  接收本地通知的时候调用此方法 *  当应用收到本地通知时会调这个方法,同上面一个方法类似。 *  如果在前台运行状态直接调用,如果在后台状态,点击通知启动时,也会回调这个方法 *  本地通知可见另一篇文章:http://bluevt.org/?p=70 * *  @param application  应用 *  @param notification 本地通知 */ – (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification NS_AVAILABLE_IOS(4_0);

// 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:用户退出。 * *  @param application 应用 */– (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./** *  程序将要进入后台 * *  @param application 应用 */ – (void)applicationWillEnterForeground:(UIApplication *)application NS_AVAILABLE_IOS(4_0);

/** *  3D Touch 如果App是从快速入口启动的,则会执行这个方法。该方法的shortcutItem参数携带了。 * *  @param application       应用 *  @param shortcutItem      从快速入口进入app时的标签参数 *  @param completionHandler completionHandler */- (void)application:(UIApplication *)application performActionForShortcutItem:(UIApplicationShortcutItem *)shortcutItem completionHandler:(void(^)(BOOL succeeded))completionHandler NS_AVAILABLE_IOS(9_0);// 设置UIApplicationShortcutIconUIApplicationShortcutIcon *firstItemIcon = [UIApplicationShortcutIcon iconWithTemplateImageName:@"3d_btn_first"];        UIMutableApplicationShortcutItem *firstItem = [[UIMutableApplicationShortcutItem alloc]initWithType:@"1" localizedTitle:@"添加项目" localizedSubtitle:nil icon:firstItemIcon userInfo:nil];
1 0
原创粉丝点击