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. }  



    分配内存如图 

  • 相关阅读:
    Java学习之集合(HashSet)
    Java学习之集合(LinkedList链表集合)
    Java学习之集合(List接口)
    Java学习之集合(Collection接口)
    【Spring Session】和 Redis 结合实现 Session 共享
    【NodeJS】nvm
    【Html JS】使用问题记录
    【VUE】使用问题记录
    【RabbitMQ】显示耗时处理进度
    【CentOS7】开发环境配置
  • 原文地址:https://www.cnblogs.com/wangluochong/p/5056882.html
Copyright © 2011-2022 走看看