UINavigationBar Swift中的文本颜色

前端之家收集整理的这篇文章主要介绍了UINavigationBar Swift中的文本颜色前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我如何去改变UINavigationBar在Swift中的颜色?

大多数在线的东西说做类似的事情:

[self.navigationController.navigationBar setTitleTextAttributes:@{NSForegroundColorAttributeName : [UIColor whiteColor]}];

我翻译成了

let titleDict: NSDictionary = ["NSForegroundColorAttributeName": UIColor.whiteColor()]
self.navigationController.navigationBartitleTextAttributes = titleDict
//self is referring to a UIViewController

但它不工作。我已经改变了背景和按钮颜色,但文字颜色不会改变。有任何想法吗?

使用NSForegroundColorAttributeName作为键,而不是“NSForegroundColorAttributeName”字符串。
let titleDict: NSDictionary = [NSForegroundColorAttributeName: UIColor.whiteColor()]
self.navigationController.navigationBar.titleTextAttributes = titleDict
原文链接:https://www.f2er.com/swift/321253.html

猜你在找的Swift相关文章