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 5.1:
let titleDict: NSDictionary = [NSAttributedString.Key.foregroundColor: UIColor.white] navigationController?.navigationBar.titleTextAttributes = titleDict as? [NSAttributedString.Key : Any]