app的生命周期

来源:互联网 发布:re管理器mac 编辑:程序博客网 时间:2024/04/29 05:54

为了处理好应用程序的挂起、暂停等情况下的数据保存,或对应添加所需处理,我们必须了解ios生命周期。

但是不要去背去记,做个实验就好。

[cpp] view plaincopy
  1. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions  
  2. {  
  3.     // Override point for customization after application launch.  
  4.     NSLog(@"程序开始");  
  5.     return YES;  
  6. }  
  7.                               
  8. - (void)applicationWillResignActive:(UIApplication *)application  
  9. {  
  10.     // 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.  
  11.     // 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.  
  12.     NSLog(@"程序暂停");  
  13. }  
  14.   
  15. - (void)applicationDidEnterBackground:(UIApplication *)application  
  16. {  
  17.     // 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.   
  18.     // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.  
  19.     NSLog(@"程序进入后台");  
  20. }  
  21.   
  22. - (void)applicationWillEnterForeground:(UIApplication *)application  
  23. {  
  24.     // 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.  
  25.     NSLog(@"程序进入前台");  
  26. }  
  27.   
  28. - (void)applicationDidBecomeActive:(UIApplication *)application  
  29. {  
  30.     // 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.  
  31.     NSLog(@"程序再次激活");  
  32. }  
  33.   
  34. - (void)applicationWillTerminate:(UIApplication *)application  
  35. {  
  36.     // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.  
  37.     NSLog(@"程序意外终止");  
  38. }  


实验结果:

1.首次启动应用程序:

2013-09-16 17:17:33.355 LifeCycle[2148:c07] 程序开始

2013-09-16 17:17:33.356 LifeCycle[2148:c07] 程序再次激活


2.摁HOME键退出:

2013-09-16 17:17:38.177 LifeCycle[2148:c07] 程序暂停

2013-09-16 17:17:38.178 LifeCycle[2148:c07] 程序进入后台


3.再次进入程序:

2013-09-16 17:17:52.738 LifeCycle[2148:c07] 程序进入前台

2013-09-16 17:17:52.739 LifeCycle[2148:c07] 程序再次激活


转自:http://blog.csdn.net/tomios/article/details/11741351

原创粉丝点击