即使导航栏被隐藏,是否可以设置状态栏色调颜色?

时间:2013-07-29 13:15:30

标签: iphone ios objective-c xcode cocoa-touch

我在这里搜索了Apple文档和其他类似的问题,但没有一个能帮我解决iOS 6.0下的问题。

我在AppDelegate上设置我的UINavigationController,如下所示:

UINavigationController *nav;
nav = [[UINavigationController alloc]initWithRootViewController:_myViewController];
nav.navigationBar.tintColor = [self myTintColor];
nav.navigationBar.hidden = YES;

在应用程序启动期间,它显示状态栏色调颜色,因为我已将其设置在我的目标摘要上,如下图所示:

enter image description here

如果我不隐藏navigationBar状态栏色调颜色仍然存在,否则它不会。即使在发布时隐藏navigationBar,是否可以设置状态栏色调颜色?

谢谢!

1 个答案:

答案 0 :(得分:1)

您可以按照此处的建议将其字母更改为0,而不是隐藏导航栏:How to set status bar tint color on iOS 6?