change navigation controller title color swift code example
Example 1: how do change title color in navigation bar
navigationBar.largeTitleTextAttributes = [.foregroundColor: UIColor.white]
Example 2: swift navigation bar title color
let attrs = [
NSAttributedString.Key.foregroundColor: UIColor.white
]
UINavigationBar.appearance().titleTextAttributes = attrs
Example 3: swift change navigation bar title
let attrs = [
NSAttributedString.Key.foregroundColor: UIColor.white,
NSAttributedString.Key.font: UIFont(name: "Futura-Bold", size: 17)!
]
UINavigationBar.appearance().titleTextAttributes = attrs