我想从特定视图中弹出我的视图,但它的工作原理类似于 LIFO

发布于 2024-10-30 16:09:17 字数 170 浏览 6 评论 0原文

我正在使用基于导航的应用程序,但我想从任何我想要的视图中弹出我的视图,但它总是像后进先出一样工作,我能做什么?在 iPhone 中是否可能,如果可能,请帮助我..我正在使用此代码来弹出我的视图

[self.navigationController popViewControllerAnimated:YES];

i am using navigation based application but i want to pop my view from any of the view i want but it always work like LIFO, what i can do? Is it possible in iPhone ,If it is possible then help me.. I am using this code for pop my view

[self.navigationController popViewControllerAnimated:YES];

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

只为一人 2024-11-06 16:09:18

我建议查看 UINavigationController。您不仅可以弹出单个视图控制器,还可以:

  • 使用 popToViewController:animated: 弹出到特定视图控制器
  • 使用 popToRootViewControllerAnimated: 一直弹出到根目录
  • 设置品牌具有 setViewControllers:animated: 的新视图控制器堆栈

所有这些都将自动动画(如果指定)并避免您描述的“LIFO”操作方法。

I'd recommend taking a look at the class documentation for UINavigationController. Instead of just popping a single view controller, you can:

  • Pop to a specific view controller with popToViewController:animated:
  • Pop all the way to the root with popToRootViewControllerAnimated:
  • Set a brand new stack of view controllers with setViewControllers:animated:

All of these will be automatically animated (if specified) and avoid the "LIFO" method of operation you describe.

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