UITabBarController 并通过代码从一个选项卡切换到另一个选项卡

发布于 2024-09-12 18:50:15 字数 505 浏览 3 评论 0原文

我有一个 UITabBarController 控制两个选项卡:“主要”和“设置”。

现在,我想在某些条件下从“主”选项卡切换到“设置”选项卡(例如用户在使用该应用程序之前必须进行某项设置)。

我知道我可以从 AppDelegate 执行此操作,但当我在主视图中运行时,我的情况可能会发生。

我尝试过这样的事情:

    AppDelegate *delegate = [[UIApplication sharedApplication] delegate];
delegate.rootController.selectedIndex = 1;

其中 rootController 是我的 AppDelegate 中定义的 UITabBarController。

上面代码的结果是选项卡发生更改(例如,“设置”选项卡显示为活动状态),但它仍然显示主视图。

我确信有一个简单的解决方案,我一定错过了......

所有建议都受到赞赏。

I have a UITabBarController that controls two tabs, Main and Settings.

Now I would like, under certain conditions, to switch from the Main tab to the Settings tab (like if there is a setting the user have to do before he can use the App).

I know I can do this from the AppDelegate, but my condition could occur when I'm running in the Main view.

I have tried something like this:

    AppDelegate *delegate = [[UIApplication sharedApplication] delegate];
delegate.rootController.selectedIndex = 1;

Where rootController is a UITabBarController defined in my AppDelegate.

The result from above code is that the tab change (eg the Settings tab is showed as active) but it still shows the Main view.

I'm sure there is a simple solution to this that I must have missed...

All suggestions are appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

画骨成沙 2024-09-19 18:50:16

您是否尝试过:

self.tabBarController.selectedIndex = 1;

在第一个 viewController 中?

Have you tried:

self.tabBarController.selectedIndex = 1;

in the first viewController?

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