In my App I'm using an tabBarController with more than five viewControllers. For my app I changed the color of my all Navigation Bars including the navigation bar of the moreNavigationController. But if I'm editing the tab order a new view comes up and its navigationBar has another (standard) color.
Unfortunately I could not found where I have to change this color.
Could you give me a hint where I can do this?
Thanks a lot!
The solution is the UIAppeareance protocol method appearance:
[[UINavigationBar appearance] setTintColor:[UIColor blackColor]];
Thanks to danypata for the comment!