iOS:TabBar 控制器中的每个选项卡都有一个 NavigationController
我想制作一个由 TabBar 控制的应用程序, 但是当选择选项卡时,可以使用顶部具有导航项的导航控制器。
这与 AppStore 的行为相同,当选择“搜索”选项卡时,导航项有一个目标,但在“更新”选项卡中还有另一个导航项。 我认为一个不会影响另一个。
有这方面的文章或教程吗?
谢谢。
I would like to make an app that is controlled by a TabBar,
but when a tab is selected a navigation controller with the navigation item at the top may be used.
This is the identical behavior of the AppStore, when the Search tab is selected, the Navigation Item have one objective, but in the Updates Tab there is another navigation item.
I think one doesn't affect the other one.
Is there any article or tutorial for this?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在每个选项卡项中嵌入一个单独的 NavigationController。这将为每个选项卡提供独立的导航堆栈。
检查此答案,其中包含有关如何实现此操作的文档和教程的链接。
You can embed a seperate NavigationController in each tab item. This will give you an independant navigation stack for each tab.
Check this answer which has links to the documentation and tutorials on how to implement this.