how to change color of title swift code example
Example: swift navigation bar title color
// Place this in your didFinishLaunchingWithOptions method in the AppDelegate
let attrs = [
NSAttributedString.Key.foregroundColor: UIColor.white
]
UINavigationBar.appearance().titleTextAttributes = attrs