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