The background text in the status bar is still black. How do I change the color to white?
// io8, swift, Xcode 6.0.1 override func viewDidLoad() { super
Swift 4.2 version of Albert's answer-
UINavigationBar.appearance().barTintColor = UIColor(red: 234.0/255.0, green: 46.0/255.0, blue: 73.0/255.0, alpha: 1.0) UINavigationBar.appearance().tintColor = UIColor.white UINavigationBar.appearance().titleTextAttributes = [.foregroundColor : UIColor.white]