如何在iphone的TabController中从一个标签移动到另一个标签?

时间:2013-07-31 12:45:57

标签: iphone objective-c tabs

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

    [self.tabBarController.viewControllers objectAtIndex:0]; 

提前感谢。

4 个答案:

答案 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];