zoukankan      html  css  js  c++  java
  • iOS开发——生命周期(转) sansan

    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.首次启动应用程序:

    2012-06-26 11:06:39.313 WQTest[485:17903] 程序开始

    2012-06-26 11:06:39.320 WQTest[485:17903] 程序再次激活

    2.摁HOME键退出:

    2012-06-26 11:08:08.687 WQTest[485:17903] 程序暂停

    2012-06-26 11:08:08.690 WQTest[485:17903] 程序进入后台


    3.再次进入程序:

    2012-06-26 11:09:11.047 WQTest[485:17903] 程序进入前台

    2012-06-26 11:09:11.049 WQTest[485:17903] 程序再次激活

  • 相关阅读:
    微信内置浏览器 如何小窗不全屏播放视频?也可以尝试canvas.
    正则替换replace中$1的用法以及常用正则
    去掉textarea和input在ios下默认出现的圆角
    让ckplayer支持m3u8格式的播放
    ios中的safari转换时间戳问题
    JavaScript判断不同平台
    swiper实现臭美app滑动效果
    开启CSP网页安全政策防止XSS攻击
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    设置元素text-overflow: ellipsis后引起的文本对齐问题
  • 原文地址:https://www.cnblogs.com/liushanshan/p/2601208.html
Copyright © 2011-2022 走看看