UINavigationBar Text Color in Swift

前端 未结 11 1867
刺人心
刺人心 2021-01-30 12:20

How would I go about changing the color of the UINavigationBar in Swift?

Most things online say to do something like:

[self.navigationContro         


        
11条回答
  •  忘掉有多难
    2021-01-30 13:00

    Swift 3+

    self.navigationController?.navigationBar.titleTextAttributes = [NSForegroundColorAttributeName : UIColor.white]
    

    Swift 4.0

    self.navigationController?.navigationBar.titleTextAttributes = [NSAttributedStringKey.foregroundColor : UIColor.white]
    

提交回复
热议问题