2

我有一个包含 UITabBarController 的 UINavigationController 的根视图。标签栏控制器有两个简单的视图。当它首次在 iOS 6 模拟器或设备上启动时,第一个视图上方会出现一个间隙。切换到第二个选项卡并返回会导致间隙消失。这只是从 iOS 6 开始发生。iOS 5 工作得很好。任何想法发生了什么变化?

截屏:

截屏

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];

    UITabBarController *tabBarController = [[UITabBarController alloc] init];
    UIView *dummyView1 = [[UIView alloc] init];
    [dummyView1 setBackgroundColor:[UIColor redColor]];
    UIViewController *dummyViewController1 = [[UIViewController alloc] init];
    [dummyViewController1 setView:dummyView1];

    UIView *dummyView2 = [[UIView alloc] init];
    [dummyView2 setBackgroundColor:[UIColor blueColor]];
    UIViewController *dummyViewController2 = [[UIViewController alloc] init];
    [dummyViewController2 setView:dummyView2];

    NSArray *viewControllers = [NSArray arrayWithObjects:dummyViewController1, dummyViewController2, nil];

    [tabBarController setViewControllers:viewControllers];

    UINavigationController *rootNavController = [[UINavigationController alloc] initWithRootViewController:tabBarController];
    [[self window] setRootViewController:rootNavController];

    self.window.backgroundColor = [UIColor whiteColor];
    [self.window makeKeyAndVisible];
    return YES;
}
4

4 回答 4

2

Apple 在我相信应用程序编程指南(或者可能是 ViewController 指南)中明确告诉我们 tabBarController 不应该放在导航控制器中。您需要颠倒顺序。您可以通过切换它的控制器数组并让一组隐藏 tabBar 来使用 tabBarController。但是,任何像现在这样使用命令的尝试都注定会在某些时候失败——你可以让它在 iOS5.1 中工作,然后在 6、6.1 或 7 中看到它中断。

于 2012-09-24T21:33:32.713 回答
1

不,您不需要颠倒顺序,Apple 需要解释原因。我浏览了他们的所有文档,但找不到这样做的合理理由。

我可以想到一个非常合理的使用这个配置。假设我想创建一个应用程序,以显示有关一组实体的类别信息,例如体育联盟中的球队。我可以使用导航控制器作为封装控制器,并使用标签栏为每个团队显示各种统计数据,例如团队或球员统计数据。你为什么要以其他方式做这样的事情?这是完全合乎逻辑的。当然,除了安抚苹果的众神。

于 2012-11-13T17:04:26.387 回答
0

不知道为什么他们不允许这样做或为什么会发生“差距”,但我找到了解决方法:

tabController.SelectedIndex=1;
tabController.SelectedIndex=0;

将选项卡推到导航控制器上后。

于 2013-05-27T14:49:58.990 回答
0

我找到的最佳解决方法是创建没有根控制器的 UINavigationController,将其添加到窗口,然后推送 UITabBarController:

navigationController = [[UINavigationController alloc] init];

[[self window] setRootViewController:navigationController];

[navigationController pushViewController:tabBarController animated:NO];
于 2013-07-26T13:06:12.210 回答