如何使 TabBar 按钮始终加载 NavigationController 的第一个视图
如何强制 TabBar 按钮始终加载 NavigationController 的第一个视图?
我不想加载最后一次加载的视图,但总是返回到该 NavigationController 方案的第一个视图。
非常感谢!
How can I force a TabBar button to load always the first view of a NavigationController?
I don't want to load the last in time loaded view but always come back to the first view of that NavigationController scheme.
Thank You very much!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当您点击
TabBarItem
时选择顶部视图,如下所示:根据您设置
UITabBar
的方式,从tabBarController:shouldSelectViewController:
调用它或来自tabBar:didSelectItem
。Select the top view when you tap a
TabBarItem
like so:Depending on how you set your
UITabBar
up, call it either fromtabBarController:shouldSelectViewController:
or fromtabBar:didSelectItem
.您可以调用popToRootViewControllerAnimated:。
请查看此处了解更多信息信息。
You can call
popToRootViewControllerAnimated:
.Take a look here for more info.