• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

objective-c - UINavigationController 内的 UITabBarController 中的间隙

[复制链接]
菜鸟教程小白 发表于 2022-12-13 16:36:54 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

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

截图:

Screenshot

- (BOOL)applicationUIApplication *)application didFinishLaunchingWithOptionsNSDictionary *)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;
}



Best Answer-推荐答案


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

关于objective-c - UINavigationController 内的 UITabBarController 中的间隙,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12570087/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap