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