博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
IOS 7 Study - Manipulating a Navigation Controller’s Array of View
阅读量:6076 次
发布时间:2019-06-20

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

Problem

You would like to directly manipulate the array of view controllers associated with a
specific navigation controller

Solution
Use the viewControllers property of the UINavigationController class to access and
modify the array of view controllers associated with a navigation controller

 

- (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];}

 

转载地址:http://lxxgx.baihongyu.com/

你可能感兴趣的文章
学习记录-其他
查看>>
HTML5的新特性
查看>>
xxx is not in the sudoers file解决方法(完)
查看>>
ln,创建软连接与硬连接
查看>>
小程序接口
查看>>
腾讯开源 DCache,分布式 NoSQL 存储系统
查看>>
chmod chown umask chattr_lsattr
查看>>
详解环保数采仪功能应用
查看>>
解决克隆系统网卡名字不是默认eth0的问题
查看>>
Nginx访问控制和虚拟主机
查看>>
账户管理
查看>>
Linux本地数据上传到阿里云OSS
查看>>
Java局部变量
查看>>
MaxCompute Spark开发指南
查看>>
147.使用 editplus 连接 Linux系统
查看>>
Redis 的安装配置介绍
查看>>
红米5.0以上手机一键激活XPOSED框架的经验
查看>>
除了FineBI,国内还有哪些比较好的BI产品
查看>>
信修修:显示器黑屏无信号 但电脑一直在运行的原因和解决办法
查看>>
RAID阵列
查看>>