2011-03-14 8 views
2

UITabBarController内のいずれかのタブのViewContoller(およびView)を変更/置換することは可能ですか?TabBarItemのViewControllerを変更する

3つの異なるViewControllerを特定のTabから任意の順序で切り替えることができます(NavigationControllerが不可能な理由)。

答えて

3

これらは、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]; 

希望します。

+0

ありがとうございます!それはViewControllerを置き換えました。ただし、TabBarItemが復元され、アイコン/テキストが消えました。 tabBarItemに属しているViewControllerの1つで、これは問題ありませんでしたか? –

関連する問題