zoukankan      html  css  js  c++  java
  • iOS 深入理解UINavigationController 和 UIViewController 之间的关系

    创建三个类 

    C++代码  收藏代码
    1. BasicViewController : UIViewController   
    2. SecondViewController : UIViewController   
    3. ThirdViewController : UIViewController   



    然后我们在BasicViewController .m文件中push一个viewController: 
    SecondViewController *svc = [SecondViewController new]; 
    [self.navigationController pushViewController:svc animated:true]; 
    在SecondViewController.m文件中pop出viewController: 
    [self.navigationController popViewControllerAnimated:true] 

    问题就来了, 
    push和pop是同一个viewController,那为什么用self.navigationController 就可以知道了 

    其中在AppDelegate.m: 

    C++代码  收藏代码
    1. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions  
    2. {  
    3.     self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];  
    4.     // Override point for customization after application launch.  
    5.   
    6.     BasicViewController  *basicViewController = [BasicViewController new];//实例化内存后,_parentViewController-->nil  
    7.     UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:basicViewController];  
    8.     // self.window.rootViewController = basicViewController.parentViewController;   
    9.     self.window.rootViewController = navigationController;  
    10.       
    11.     [self.window makeKeyAndVisible];  
    12.     return YES;  
    13. }  



    等价于 

    C++代码  收藏代码
    1. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions  
    2. {  
    3.     self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];  
    4.     // Override point for customization after application launch.  
    5.   
    6.     BasicViewController  *basicViewController = [BasicViewController new];//实例化内存后,_parentViewController-->nil  
    7.     UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:basicViewController];  
    8.     self.window.rootViewController = basicViewController.parentViewController; //不可以注释上一句,因为上一句是为_parentViewController实例化  
    9.     // self.window.rootViewController = navigationController;  
    10.       
    11.     [self.window makeKeyAndVisible];  
    12.     return YES;  
    13. }  



    分配内存如图 

  • 相关阅读:
    ASP.NET 中Request.QueryString 中的key
    我要爱死这个markdown 了
    WindowsPhone 8 开发 之 本地数据库应用
    java对象详解
    java内存分析
    java 成长之路
    springboot hessian
    zabbix 3.0 安装 ubuntu环境
    dubbo+zookeeper简单环境搭建
    大型网站及架构演进过程
  • 原文地址:https://www.cnblogs.com/wangluochong/p/5056882.html
Copyright © 2011-2022 走看看