2
UITabBarController内のいずれかのタブのViewContoller(およびView)を変更/置換することは可能ですか?TabBarItemのViewControllerを変更する
3つの異なるViewControllerを特定のTabから任意の順序で切り替えることができます(NavigationControllerが不可能な理由)。
UITabBarController内のいずれかのタブのViewContoller(およびView)を変更/置換することは可能ですか?TabBarItemのViewControllerを変更する
3つの異なるViewControllerを特定のTabから任意の順序で切り替えることができます(NavigationControllerが不可能な理由)。
これらは、setViewController:animatedを使用して(質量で)設定されています。このようにすることができます。
// Assume tabController is the tab controller
// and newVC is the controller you want to be the new view controller at index 0
NSMutableArray *newControllers = [NSMutableArray arrayWithArray:tabController.viewControllers];
[newControllers replaceObjectAtIndex:0 withObject:newVC];
[tabController setViewControllers:newControllers animated:YES];
希望します。
ありがとうございます!それはViewControllerを置き換えました。ただし、TabBarItemが復元され、アイコン/テキストが消えました。 tabBarItemに属しているViewControllerの1つで、これは問題ありませんでしたか? –