4

リンクに問題があり、ストーリーボードではなくxibを使用しています。

UITabBarController システムと、タブ バー システムから離れた他のいくつかのビュー コントローラーがあります。私の質問は、ボタンを使用してView Controllerの1つからUITabBarControllerの特定のページにリンクできますか?

4

1 に答える 1

1

UITabBarController が親で、タブの下の ViewControllers が子です。parentViewController プロパティを使用して、childViewControllers から TabBarController にアクセスできます。

したがって、ViewController1 と ViewController2 を保持する 2 つのタブを持つ UITabBarController がある場合は、どちらでもこの行を使用できます。

UITabBarController* tabBarController = (UITabBarController*)self.parentViewController;
// So if for example you have a button in ViewController2 and you need to show
// ViewController1 when it is pressed, you can do the following
tabBarController.selectedIndex = 0;
于 2012-11-12T22:40:49.203 に答える