博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
手动操作导航控制器的子视图控制器的数组
阅读量:6691 次
发布时间:2019-06-25

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

大熊猫猪·侯佩原创或翻译作品.欢迎转载,转载请注明出处.

假设认为写的不好请多提意见,假设认为不错请多多支持点赞.谢谢! hopy ;)


免责申明:本博客提供的全部翻译文章原稿均来自互联网。仅供学习交流之用。请勿进行商业用途。

同一时候。转载时不要移除本申明。如产生不论什么纠纷,均与本博客全部人、发表该翻译稿之人无不论什么关系。谢谢合作!

你可能希望直接操作与特定导航控制器相关的子视图控制器的数组.

你能够使用UINavigationController的viewControllers属性改动其相关联的子视图控制器:

- (void) goBack{/* Get the current array of View Controllers */NSArray *currentControllers = self.navigationController.viewControllers;        /* Create a mutable array out of this array */        NSMutableArray *newControllers = [NSMutableArray                                          arrayWithArray:currentControllers];        /* Remove the last object from the array */        [newControllers removeLastObject];        /* Assign this array to the Navigation Controller */        self.navigationController.viewControllers = newControllers;    }

你能够不论什么视图控制器中调用该方法去弹出继承体系中最后(最后push入的,猫猪注)的导航控制器的子视图控制器.

UINavigationController类的实例都持有一个数组对象,当中每个元素皆为一个UIViewController对象.在获取到该数组之后,你能够以你希望的不论什么方式手动操作该数组.比方说,你能够删除该继承体系数组中的一个视图控制器.

可是直接操作这个UIViewController的数组并不会呈现给用户动画效果,假设你希望操作动画化,能够使用UINavigationController类的setViewControllers:animated:方法,代码例如以下:

- (void) goBack{/* Get the current array of View Controllers */NSArray *currentControllers = self.navigationController.viewControllers;/* Create a mutable array out of this array */        NSMutableArray *newControllers = [NSMutableArray                                          arrayWithArray:currentControllers];        /* Remove the last object from the array */        [newControllers removeLastObject];        /* Assign this array to the Navigation Controller with animation */        [self.navigationController setViewControllers:newControllers                                             animated:YES];}
你可能感兴趣的文章
维护机房里的电脑要掌握哪些知识
查看>>
利用 VMware 技术构建超融合平台 第 1 部分
查看>>
ONOS系统架构之高可用实现方案的演进
查看>>
windows 2008 修改ilo密码
查看>>
Windows AD证书服务系列---证书的使用范围(3)
查看>>
ps、firewords在win78中无法直接拖入的问题解决方法
查看>>
android-------非常好的图片加载框架和缓存库(Picasso)
查看>>
Titanium, PhoneGap, Sencha Touch, jQuery Mobile – Clearing up confusion
查看>>
eclipse如何部署Web工程到tomcat中
查看>>
在CentOS7上安装JDK1.8
查看>>
搜索和网页排名的数学原理
查看>>
Xcode项目中同一个名称不同位置 简单修改
查看>>
java设计模式-建造者模式
查看>>
oracle笔记
查看>>
ContentProvider数据更新
查看>>
Java 关于Ajax的实例--验证用户名(四)
查看>>
入字节码 -- ASM 关键接口 MethodVisitor
查看>>
如何在Centos 6 X86_64安装RHEL EPEL知识库?
查看>>
spring-util命名空间
查看>>
微信小程序周报(第四期)
查看>>