0

在我的应用程序中,我有 TabBarView 控制器,因为我有 4 个选项卡,在第 3 个选项卡中我有按钮,当单击按钮时我需要转到 1 个选项卡。请任何人帮助我。这里我的代码是:

    [self.tabBarController.viewControllers objectAtIndex:0]; 

提前致谢。

4

4 回答 4

1
[self.tabBarController setSelectedIndex:1];
于 2013-07-31T13:07:45.220 回答
0

设置selectedIndex选项卡栏控制器将更改所选选项卡(和关联的视图控制器)。您还可以selectedViewController根据您当前的代码/配置设置是否更容易。

于 2013-07-31T12:48:48.717 回答
0

只需将 SelectedIndex 设置tabBarViewController0如下所示..

[self.tabBarController setSelectedIndex:0]; 
于 2013-07-31T12:52:01.247 回答
0

请尝试以下解决方案之一:

self.tabBarController.selectedIndex = 1;

或者

[self.tabBarController setSelectedIndex:1];
于 2013-07-31T12:49:03.507 回答