我们正在构建一个以UIViewController
开头的应用程序,其中UIToolBar
包含UIToolBarButtonItems
。 storyboard
还有一个UITabBarController
,其中包含五个标签和场景。我们如何segue
到特定UITabBarController
场景而不是仅仅登陆UITabBarController
的第一个场景?附上Storyboard
屏幕截图。
答案 0 :(得分:0)
在你的tabbarbutton动作中写下这一行。
<强>目标C:强>
这将选择标签:
[self.tabBarController setSelectedIndex: yourtabindex];
**selectedViewController** is used for load the yourtabindex.
self.tabBarController.selectedViewController = [self.tabBarController.viewControllers objectAtIndex:yourtabindex];
<强>夫特强>
var selectedIndex = tabBarController!.selectedIndex
var yourViewControllerObject = self.tabBarController.viewControllers[selectedIndex] as yourViewController