iPhone - 重置 UINavigation 控制器
我在 UITabBarController 中有一个 UINavigationController 。当用户按下第一个选项卡时,我想将导航控制器重置回第一个屏幕,而不是显示他们最后在导航控制器中选择的视图。有没有简单的方法来重置堆栈?
谢谢, 豪伊
I have a UINavigationController inside a UITabBarController. When a user presses the first tab, I want to reset the navigation controller back to the first screen instead of displaying whichever view they last selected in the navigation controller. Is there an easy way to reset the stack?
Thanks,
Howie
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
-[UINavigationController popToRootViewControllerAnimated:] 应该做你想做的。
-[UINavigationController popToRootViewControllerAnimated:] should do what you want.
检查此线程:http://www.iphonedevsdk。 com/forum/iphone-sdk-development/2625-uinavigationcontroller-uitabbarcontroller.html
根据此线程,您应该在
– tabBarController:didSelectViewController:
中重置导航控制器Check this thread: http://www.iphonedevsdk.com/forum/iphone-sdk-development/2625-uinavigationcontroller-uitabbarcontroller.html
According to this thread you should reset the navigation controller in
– tabBarController:didSelectViewController: