UITabBarController无法设置视图

时间:2014-03-08 13:05:06

标签: ios objective-c uitabbarcontroller

我正在尝试使用以下代码将我的UITabBarController的视图设置为中间项:

- (void)viewDidLoad
{
    [super viewDidLoad];
    UITabBarController *tabBarController = (UITabBarController *)self.window.rootViewController;
    tabBarController.selectedIndex = 2;
}

但它仍指向第一项。这不应该起作用吗?

1 个答案:

答案 0 :(得分:0)

在你的UITabBarController调用中

- (void)viewDidLoad
{
   [super viewDidLoad];

   self.selectedIndex = 2;
}