我有tabcontroller有多个导航控制器。触摸不同的选项卡将转到不同的naviagtion控制器。如何以编程方式转到不同的标签?
通常情况下,我会去触摸。
答案 0 :(得分:2)
您可以为tabViewController [your tabviewcontroller].selectedIndex = 1;
答案 1 :(得分:2)
在TabBarController中,您可以将selectedViewController属性设置为要激活的选项卡的视图控制器:
myTabBarController.selectedViewController = aViewController;
或者,如果您知道TabBarController的viewControllers数组中视图控制器的索引号,则可以设置:
myTabBarController.selectedIndex = 2; // selects the third view controller in myTabBarController.viewControllers