Question

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.

moreNavigationController.navigationBar enter image description here

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!

Was it helpful?

Solution

The solution is the UIAppeareance protocol method appearance:

[[UINavigationBar appearance] setTintColor:[UIColor blackColor]];

Thanks to danypata for the comment!

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top