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



    分配内存如图 

  • 相关阅读:
    web自动化框架如何设计
    如何保证元素定位的成功率(等待机制)
    验证码问题处理
    selenium元素定位
    网路知识总结(session&&Cookie&&三次握手&&请求头)
    python中方法的总结
    Twelve Day 检测大写字母
    超过5名学生的课(SQL语句)
    The Eleven Day 删除排序数组中的重复项
    删除重复的电子邮箱(SQL语句)
  • 原文地址:https://www.cnblogs.com/wangluochong/p/5056882.html
Copyright © 2020-2023  润新知