加载选项卡栏项目的方法?
我有 2 个选项卡栏项目。第一个选项卡内有一个导航控制器(3 个视图)。
假设我在导航控制器的第三个视图上,如何加载第二个选项卡。
I have 2 tab bar items. The first tab have a navigation controller(3 views) within.
Say I am on the 3rd view of the navigation controller, how do I load the 2nd tab.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因此您想从第一个选项卡切换到第二个选项卡。
首先,您需要访问 tabbarController。
大多数时候,您会在 AppDelegete 中拥有选项卡栏控制器。
像这样调用委托:
然后只需设置 selectIndex:
或
So you want to switch from the first tab to the second tab.
Well you first you need to acces the tabbarController.
Most of the time you would have the tabbar controller in AppDelegete.
Calling the delegate like this:
Then the just set the selectIndex:
or