how to change navigationitem title color

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

    Swift 4

    set this first

    navigationController?.navigationBar.barStyle = .default
    

    then one of those should work

    navigationBar.largeTitleTextAttributes = [NSAttributedStringKey.foregroundColor: UIColor.red]
    

    or

    navigationBar.titleTextAttributes = [NSAttributedStringKey.foregroundColor: UIColor.red]
    

    Swift 5

    navigationBar.largeTitleTextAttributes = [NSAttributedString.Key.foregroundColor: UIColor.red]
    

    or

    navigationBar.titleTextAttributes = [NSAttributedString.Key.foregroundColor: UIColor.red]
    

提交回复
热议问题