how to change navigationitem title color

前端 未结 11 1341
南旧
南旧 2021-01-30 12:35

I think all day to change the navigation Bar title color, but it doesn\'t work. this is my code:

var user: User? {
    didSet {
        navigationItem.title = us         


        
11条回答
  •  爱一瞬间的悲伤
    2021-01-30 13:06

    For iOS 13 you have to change the color in the appearance property and for older iOS versions you can do it directly in the navigation bar property.

    if #available(iOS 13.0, *) {
        navigationController?.navigationBar.standardAppearance.titleTextAttributes = [.foregroundColor: UIColor.white]
    } else {
        navigationController?.navigationBar.titleTextAttributes = [.foregroundColor: UIColor.white]
    }
    

提交回复
热议问题