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

前端 未结 6 810
滥情空心
滥情空心 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:14

    Your code is OK you just need to set all of titleTextAttributes in one line:

    UINavigationBar.appearance().titleTextAttributes = [NSForegroundColorAttributeName: UIColor.white , NSFontAttributeName: UIFont(name: "Avenir", size: 17)!]
    

提交回复
热议问题