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
override func viewDidLoad() { super.viewDidLoad() navigationController?.navigationBar.barTintColor = UIColor.orange navigationController?.navigationBar.tintColor = UIColor.white navigationController?.navigationBar.titleTextAttributes = [NSForegroundColorAttributeName: UIColor.white] }