以下是上述问题的代码行。
此问题发生在Swift 4.1
。
let textAttributes = [NSAttributedStringKey.foregroundColor:UIColor.white]
navigationController?.navigationBar.titleTextAttributes = textAttributes
答案 0 :(得分:3)
我通过替换属性字符串键来修复此问题。
以下是我更新的代码:
let textAttributes = [NSForegroundColorAttributeName : UIColor.white]
navigationController?.navigationBar.titleTextAttributes = textAttributes