iPhone - 导航控制器 - 从最后一个视图移动到第一个视图,而不遍历所有中间视图
我正在开发 iPhone 应用程序,它将在第一个视图中显示 4 个按钮。单击按钮时,它将使用导航控制器加载新视图。该导航控制器视图最多允许移动 11 个子视图。在第 11 个子视图中,我有一个重置按钮。单击重置按钮后,我必须返回导航控制器第一个视图而不遍历所有 11 个视图?有可能实现吗?如果是的话怎么办?如果不是,有什么解决办法?
i'm working on iphone app which will show 4 buttons in first view. on click of a button, it will load a new view with navigation controller. this navigation controller view allows to travel upto 11 sub views. in 11th sub view, i've a reset button. on click of reset button, i've to go back to navigation controllers first view without traversing all the 11 views? is it possible to achieve it? if yes how? if no, what can be the solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您还可以使用:
You can also use the:
当你想直接弹出到第一个视图时,你可以在第11个视图中使用
[self.navigationController popToViewController:objFirstViewControlleranimated:YES]
。如果您确定必须移动到第一个视图并且它是 rootviewcontroller 那么您可以直接使用
[self.navigationController popToRootViewControllerAnimated:YES];
快乐编码..
u can use
[self.navigationController popToViewController:objFirstViewController animated:YES]
in the 11th view when you want to pop directly to the first view.And if you are sure that you have to move to the first view and it is a rootviewcontroller then you can directly use
[self.navigationController popToRootViewControllerAnimated:YES];
Happy Coding..