// Navigation Bar:
navigationController?.navigationBar.barTintColor = UIColor.green
// Navigation Bar Text:
navigationController?.navigationBar.titleTextAttributes = [.foregroundColor: UIColor.orange]
// Tab Bar:
tabBarController?.tabBar.barTintColor = UIColor.brown
// Tab Bar Text:
tabBarController?.tabBar.tintColor = UIColor.yellow
// Place this in your didFinishLaunchingWithOptions method in the AppDelegate
let attrs = [
NSAttributedString.Key.foregroundColor: UIColor.white
]
UINavigationBar.appearance().titleTextAttributes = attrs