ios7状态栏表现不正常

时间:2013-09-28 10:28:50

标签: ios7 statusbar

我正在为我的应用程序使用UITabbar。每个标签内都有一个导航控制器。

当我触摸标签栏中的标签时,会发生这种情况:

Weird navigation controller

状态栏第一次为黑色(ios7) 第二次状态栏显示信息(ios7)

但是,对于这两个示例,导航导航栏不会在状态栏下方展开。

发生了什么事?

1 个答案:

答案 0 :(得分:0)

从app delegate中删除它:

    UIImage *topbarImage = [UIImage imageNamed:@"topbar"];
    UIImage *topbarStrechable = [topbarImage stretchableImageWithLeftCapWidth:0 topCapHeight:0];
    [[UINavigationBar appearance] setBackgroundImage:topbarStrechable forBarMetrics:UIBarMetricsDefault];
    [[UINavigationBar appearance] setTintColor:[UIColor navigationBarColor]];
一切都开始像一个魅力。 ; - )