I want to change UINavigationBar color globally for the whole application from the AppDelegate. For it I do:
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject : AnyObject]?) -> Bool {
UINavigationBar.appearance().tintColor = UIColor(red: 63, green: 172, blue: 236, alpha: 1)
}
but, I do not know why, it doesn't change the color of my Navigation bar.
I had connect Navigation Bar as Editor > Embed In > Navigation Controller
How can I set the color for NavBar?