如何更改NavigationBar的颜色?

时间:2016-10-16 20:14:27

标签: ios colors

我正在尝试更改文字的颜色"欢迎"在导航栏中。 如您所见,它是蓝色的,我想将其更改为白色,作为导航栏中的其余文本。

你能给我任何想法吗?我试图添加一些代码并且它正在工作,因为时钟是黑色的,现在是白色的,就像它应该的那样,但是"欢迎"仍然保持蓝色。

enter image description here

1 个答案:

答案 0 :(得分:1)

将此代码放在didFinishLaunchingWithOptions方法的app委托中,或者放在navigationController的自定义类

let customColor = UIColor.redColor()
UINavigationBar.appearance().titleTextAttributes = [NSForegroundColorAttributeName:customColor]
UINavigationBar.appearance().tintColor = customColor