在我的应用程序中我有TabBarView控制器,因为我有4个选项卡,在第3个选项卡中我有按钮,当我点击按钮时我需要去1个标签。请任何人帮助我。 我的代码是:
[self.tabBarController.viewControllers objectAtIndex:0];
提前感谢。
答案 0 :(得分:1)
[self.tabBarController setSelectedIndex:1];
答案 1 :(得分:0)
设置标签栏控制器的selectedIndex
将更改所选标签(和关联的视图控制器)。如果根据您当前的代码/配置更容易,您也可以设置selectedViewController
。
答案 2 :(得分:0)
请尝试以下解决方案之一:
self.tabBarController.selectedIndex = 1;
或
[self.tabBarController setSelectedIndex:1];
答案 3 :(得分:0)
将tabBarViewController
的SelectedIndex设置为0
,如下所示..
[self.tabBarController setSelectedIndex:0];