how to change navigationitem title color

前端 未结 11 1419
南旧
南旧 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:22

    If you set your navigation bar's title to prefer large titles, like so:

    navigationBar.prefersLargeTitles = true
    

    then you need to use the largeTitleTextAttributes property and not the titleTextAttributes property. If you set your nav title to be a large title, the titleTextAttribute is not the correct property to use. Use the largeTitleTextAttributes property, like so:

    navigationBar.largeTitleTextAttributes = [.foregroundColor: UIColor.white]
    

提交回复
热议问题