zoukankan      html  css  js  c++  java
  • IOS4多任务下,viewWillAppear不能调用的问题解决 (转)

    问题描述:原来在IOS3里面通过viewWillAppear来初始化画面数据,但是升级到IOS4后,在画面显示时直接按【home】键退出,再次进入时,画面并没有初始化最新的数据。
    解决办法:添加下面代码
    C代码 复制代码 收藏代码
    1. - (void)applicationDidEnterBackground:(UIApplication *)application {   
    2.     /*  
    3.      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.   
    4.      If your application supports background execution, called instead of applicationWillTerminate: when the user quits.  
    5.      */  
    6.     [viewController.modalViewController viewWillDisappear:NO];   
    7. }   
    8.   
    9.   
    10. - (void)applicationWillEnterForeground:(UIApplication *)application {   
    11.     /*  
    12.      Called as part of  transition from the background to the inactive state: here you can undo many of the changes made on entering the background.  
    13.      */  
    14.     [viewController.modalViewController viewWillAppear:NO];   
    15. }  
    - (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, called instead of applicationWillTerminate: when the user quits.
         */
    	[viewController.modalViewController viewWillDisappear:NO];
    }
    
    
    - (void)applicationWillEnterForeground:(UIApplication *)application {
        /*
         Called as part of  transition from the background to the inactive state: here you can undo many of the changes made on entering the background.
         */
    	[viewController.modalViewController viewWillAppear:NO];
    }
    

    原因分析:由于IOS4支持多任务,应用程序按【home】是只是转到当前活动应用的后面,并没有退出,相当于画面暂停了,这里在程序转到后面时强制运行viewWillDisappear方法,返回活动应用时强制运行viewWillAppea
  • 相关阅读:
    HDU
    UVa——540Team Queue(STL练习map、queue数组的综合使用)
    NOJ——1659求值(log10取对数+floor取整数部分+可有可无的快速幂)
    NOJ——1658平方和(自然数平方和公式和取模法则)
    HDU——2723Electronic Document Security(STL map嵌套set做法)
    HDU——1982Kaitou Kid
    HDU——1073Online Judge(string类以及其对应函数)
    HDU——1062Text Reverse(水题string::find系列+reverse)
    HDU——1009FatMouse' Trade(贪心+结构体+排序)
    HDU——1799循环多少次(杨辉三角/动态规划/C(m,n)组合数)
  • 原文地址:https://www.cnblogs.com/zhwl/p/2285950.html
Copyright © 2011-2022 走看看