如何将iOS 7工具栏设为黑色?当我升级我的应用程序时,它目前是默认的白色。我想保持黑色。我没有在Interface Builder中看到这样做的方法。有人可以提出解决方案吗?
提前致谢!
答案 0 :(得分:0)
如果你想让“UINavigationBar”成为黑色......
在AppDelegate的application:didFinishLaunchingWithOptions:
方法中,添加:
[[UINavigationBar appearance] setBarTintColor:[UIColor blackColor]];
[[UINavigationBar appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName: [UIColor whiteColor]}];
这会在您的应用中为您提供黑色UINavigationBar
,同时标题文字仍为白色。