我正在尝试更改文字的颜色"欢迎"在导航栏中。 如您所见,它是蓝色的,我想将其更改为白色,作为导航栏中的其余文本。
你能给我任何想法吗?我试图添加一些代码并且它正在工作,因为时钟是黑色的,现在是白色的,就像它应该的那样,但是"欢迎"仍然保持蓝色。答案 0 :(得分:1)
将此代码放在didFinishLaunchingWithOptions方法的app委托中,或者放在navigationController的自定义类
中let customColor = UIColor.redColor()
UINavigationBar.appearance().titleTextAttributes = [NSForegroundColorAttributeName:customColor]
UINavigationBar.appearance().tintColor = customColor