iPhone Navigation Bar Title text color

Modern approach The modern way, for the entire navigation controller… do this once, when your navigation controller’s root view is loaded. [self.navigationController.navigationBar setTitleTextAttributes: @{NSForegroundColorAttributeName:[UIColor yellowColor]}]; However, this doesn’t seem have an effect in subsequent views. Classic approach The old way, per view controller (these constants are for iOS 6, but if want to do it per … Read more