How would I go about changing the color of the UINavigationBar in Swift?
UINavigationBar
Most things online say to do something like:
[self.navigationContro
Swift 3+
self.navigationController?.navigationBar.titleTextAttributes = [NSForegroundColorAttributeName : UIColor.white]
Swift 4.0
self.navigationController?.navigationBar.titleTextAttributes = [NSAttributedStringKey.foregroundColor : UIColor.white]