0

我有以下问题:我的 tabBar 的设计是在 AppDelegate.m 中设置的:

       self.tabBarController = (UITabBarController*)self.window.rootViewController;
            UITabBar     *tabBar = self.tabBarController.tabBar;
            UITabBarItem *tabBarItem1 = [tabBar.items objectAtIndex:0];
        tabBarItem1.title = @"Start";
   // ...
         [tabBarItem1 setFinishedSelectedImage:[UIImage imageNamed:@"start_selected.png"] withFinishedUnselectedImage:[UIImage imageNamed:@"start.png"]];
  // ...

但是在第一次介绍 pageViewController(通过警报在我的 tabBarController 中打开)之后,用户返回到 tabBarController。但是后来我所有来自 appDelegate 的 tabBar 设置都消失了……

...返回 tabBarController 的方法:

UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MyStoryboard" bundle:nil];
        TabBarViewController *vc = (TabBarViewController *)[storyboard instantiateViewControllerWithIdentifier:@"TBVC"]; //this is the tabBarController in the InterfaceBuilder
        [self vc animated:YES completion:nil];

更新

...我在 appDelegate 中打开介绍:

 self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
            self.viewController = [[IntroViewController alloc] initWithNibName:@"IntroViewController" bundle:nil];
            self.window.rootViewController = self.viewController;
            [self.window makeKeyAndVisible];

也许有人可以帮助我,我希望我的第一个问题不是那么糟糕。

4

1 回答 1

0

当您返回时,您正在实例化一个新的 tabBar 控制器。这意味着它将与您使用自定义设置配置的不同。

相反,请关闭警报或您正确显示的任何内容。

于 2013-08-04T14:09:47.023 回答