iPhone - 导航控制器 - 从最后一个视图移动到第一个视图,而不遍历所有中间视图

发布于 2024-09-05 18:19:21 字数 174 浏览 5 评论 0原文

我正在开发 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

淡紫姑娘! 2024-09-12 18:19:21

您还可以使用:

[self.navigationController popToRootViewControllerAnimated:YES];

You can also use the:

[self.navigationController popToRootViewControllerAnimated:YES];
满身野味 2024-09-12 18:19:21

当你想直接弹出到第一个视图时,你可以在第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..

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文