change color of titleview navigation swift code example
Example 1: swift change navigation bar color
// 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
Example 2: swift change background color
self.view.backgroundColor = UIColor.red