How to change the font and text color of the title of UINavigationBar

前端 未结 6 791
滥情空心
滥情空心 2021-01-07 18:05

I want to be change the font of the title to Avenir, and I want to make it white. Here is my code in the viewDidLoad method:

UINavigationBar.app         


        
6条回答
  •  旧巷少年郎
    2021-01-07 18:18

    In case someone needs this in Swift 4:

    let navBarAppearance = UINavigationBar.appearance()
    navBarAppearance.barTintColor = .red
    navBarAppearance.tintColor = .white
    navBarAppearance.titleTextAttributes = [
            NSAttributedString.Key.foregroundColor: UIColor.white,
            NSAttributedString.Key.font: UIFont(name: "Avenir", size: 20)!]
    

提交回复
热议问题