I have a custom button on my navigation bar and I had change the tint color of my navigation bar with UINavigationBar.appearance().tintColor = UIColor.whiteColor()
When this button make the action, all navigation bar returns to blue color
How I can fix it?
let shareButton: UIBarButtonItem = UIBarButtonItem(image: UIImage(named: "Button"), style: UIBarButtonItemStyle.Plain, target: self, action: "Function")
– Cesar Rioja G