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:
viewDidLoad
UINavigationBar.app
Your code is OK you just need to set all of titleTextAttributes in one line:
titleTextAttributes
UINavigationBar.appearance().titleTextAttributes = [NSForegroundColorAttributeName: UIColor.white , NSFontAttributeName: UIFont(name: "Avenir", size: 17)!]