我想把导航栏的背景设置为黑色,里面的所有颜色都是白色。

所以,我使用了这段代码:

[[UINavigationBar appearance] setTitleTextAttributes:
     [NSDictionary dictionaryWithObjectsAndKeys:
      [UIColor whiteColor],
      NSForegroundColorAttributeName,
      [UIColor whiteColor],
      NSForegroundColorAttributeName,
      [NSValue valueWithUIOffset:UIOffsetMake(0, -1)],
      NSForegroundColorAttributeName,
      [UIFont fontWithName:@"Arial-Bold" size:0.0],
      NSFontAttributeName,
      nil]];

但后退按钮的文本颜色,箭头和栏按钮仍然默认为蓝色。 如何改变这些颜色像下面的图像?


当前回答

从ios7开始,UINavigationBar的一些属性的行为发生了变化。你可以在下图中看到:


我想和大家分享两个美妙的链接。欲知更多详情,请浏览以下连结:

iOS 7用户界面过渡指南。 如何在iOS 7上更新你的应用。


barTintColor的苹果文档说:

默认情况下,此颜色为半透明,除非您设置 对NO的半透明性质。

示例代码:

self.navigationController.navigationBar.barTintColor = [UIColor blackColor];
self.navigationController.navigationBar.tintColor = [UIColor whiteColor];
[self.navigationController.navigationBar 
 setTitleTextAttributes:@{NSForegroundColorAttributeName : [UIColor whiteColor]}];
self.navigationController.navigationBar.translucent = NO;

其他回答

要改变UINavigationBar标题的颜色,正确的方法使用以下代码:

[self.navigationController.navigationBar setTitleTextAttributes:[NSDictionary dictionaryWithObject:[UIColor whiteColor] forKey:UITextAttributeTextColor]];

UITextAttributeTextColor在最新的ios 7版本中已弃用。使用NSForegroundColorAttributeName代替。

范的回答对我很管用。下面是c#开发者使用Xamarin.iOS/MonoTouch的相同解决方案:

var navigationBar = NavigationController.NavigationBar; //or another reference
navigationBar.BarTintColor = UIColor.Blue;
navigationBar.TintColor = UIColor.White;
navigationBar.SetTitleTextAttributes(new UITextAttributes() { TextColor = UIColor.White });
navigationBar.Translucent = false;
[[UINavigationBar appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName : [UIColor whiteColor]}];

Swift3, ios 10

要全局分配颜色,在AppDelegate didFinishLaunchingWithOptions中:

let textAttributes = [NSForegroundColorAttributeName:UIColor.white]
UINavigationBar.appearance().titleTextAttributes = textAttributes

Swift 4, iOS 11

let textAttributes = [NSAttributedStringKey.foregroundColor:UIColor.white]
UINavigationBar.appearance().titleTextAttributes = textAttributes

我认为前面的答案是正确的,这是做同样事情的另一种方式。我在这里与其他人分享,以防它对某人有用。这是如何在ios7中更改导航栏的文本/标题颜色:

UIColor *red = [UIColor colorWithRed:254.0f/255.0f green:0.0f/255.0f blue:0.0f/255.0f alpha:1.0];
NSMutableDictionary *navBarTextAttributes = [NSMutableDictionary dictionaryWithCapacity:1];
[navBarTextAttributes setObject:red forKey:NSForegroundColorAttributeName ];
self.navigationController.navigationBar.titleTextAttributes = navBarTextAttributes;