我想从特定视图中弹出我的视图,但它的工作原理类似于 LIFO
我正在使用基于导航的应用程序,但我想从任何我想要的视图中弹出我的视图,但它总是像后进先出一样工作,我能做什么?在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议查看 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:
popToViewController:animated:
popToRootViewControllerAnimated:
setViewControllers:animated:
All of these will be automatically animated (if specified) and avoid the "LIFO" method of operation you describe.