加载选项卡栏项目的方法?

发布于 2024-11-28 13:32:57 字数 80 浏览 0 评论 0原文

我有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小梨窩很甜 2024-12-05 13:32:57

因此您想从第一个选项卡切换到第二个选项卡。
首先,您需要访问 tabbarController。
大多数时候,您会在 AppDelegete 中拥有选项卡栏控制器。
像这样调用委托:

MyAppDelegate *delegate = (MyAppDelegate *)[[UIApplication sharedApplication] delegate];

然后只需设置 selectIndex:

[delegate.tabBarController setSelectedIndex:1];

[delegate.tabBarController setSelectedViewController:self.secondViewController];

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:

MyAppDelegate *delegate = (MyAppDelegate *)[[UIApplication sharedApplication] delegate];

Then the just set the selectIndex:

[delegate.tabBarController setSelectedIndex:1];

or

[delegate.tabBarController setSelectedViewController:self.secondViewController];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文