博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
蓝懿IOS/UINavigationController
阅读量:5023 次
发布时间:2019-06-12

本文共 1737 字,大约阅读时间需要 5 分钟。

今天刘国斌带着学习了导航栏控件, UINavigationController,UITabbarController,这两个控件有类似的地方,    UINavigationController可以翻译为导航控制器,在iOS里经常用到。
UINavigationController是 中的一个view controller的容器,通过栈管理viewControllers,每一次push操作都将在栈顶添加一个view controller,然后通过pop将该栈最顶端的controller移除。
  我们在工程中,通常会在controller中执行
  [self.navigationController popViewControllerAnimated:NO];来移除栈顶controller。
  假设现在有UIViewController的子类对象,A、B、C、D。
  //将A控制器设置为根控制器
  UINavigationController *myFirstCtrl =
  [[UINavigationController alloc] initWithRootViewController:myFirstCtrl];
  self.window.rootViewController = m_firstCtrl;
  //在A控制器中,push B控制器
  [self.navigationController pushViewController:B animated:NO];
  //在B控制器中,push C控制器
  [self.navigationController pushViewController:B animated:NO];
  //在C控制器中,push D控制器
  [self.navigationController pushViewController:B animated:NO];
  则此时A控制器的栈中,有四个元素,我们认为在B、C、D中都没有pop操作,此时,在A控制器中,执行[self.navigationController popViewControllerAnimated:NO];则是将D控制器从栈中移除,并非我们理解的将A控制器本身移除。同样,再次执行时,是将C控制器移除。
  以前,我都是认为移除自身的,今天跟同事进行讨论后,写了一个demo验证了一下,才知道了真相。所以,写出来跟大家分享一下,也许大家已经知道了, ,虽然我可能知道的迟了点,但是我还是很高兴分享出来,给还不知道的朋友

- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event {

    

    // 创建一个视图控制器

    RootViewController *vc0 = [RootViewController new];

    

    // 创建导航控制器, 并且设置导航控制器的根视图(最底层视图)

    UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:vc0];

    

    // 因为当前视图没有被导航所管理, 所以无法使用 push 方法跳转, 只能使用 present 方法跳转

    [self presentViewController:navController animated:YES completion:nil];

    

    

    // self.navigationController 属性

    // 若当前的视图控制器已经被导航控制器所管理, 则该属性有作用

    // 若当前的视图控制器没有被导航控制器所管理, 则该属性没有用(值为 nil)

    // [self.navigationController pushViewController:navController animated:YES];

}

 

转载于:https://www.cnblogs.com/lanyisanqqi/p/5135973.html

你可能感兴趣的文章
ServiceStack 介绍
查看>>
Centos7下载和安装教程
查看>>
无谓的通宵加班之后的思索
查看>>
S1的小成果:MyKTV系统
查看>>
从setting文件导包
查看>>
编写一个函数isMerge,判断一个字符串str是否可以由其他两个字符串part1和part2“组合”而成...
查看>>
union和union all
查看>>
Github 开源:使用控制器操作 WinForm/WPF 控件( Sheng.Winform.Controls.Controller)
查看>>
PMD使用提醒
查看>>
Codeforces 887D Ratings and Reality Shows
查看>>
论文《A Generative Entity-Mention Model for Linking Entities with Knowledge Base》
查看>>
CentOS 6.7编译安装PHP 5.6
查看>>
Linux记录-salt分析
查看>>
Android Studio默认快捷键
查看>>
发布开源库到JCenter所遇到的一些问题记录
查看>>
第七周作业
查看>>
函数式编程与参数
查看>>
flush caches
查看>>
SSAS使用MDX生成脱机的多维数据集CUB文件
查看>>
ACM_hdu1102最小生成树练习
查看>>