0

The main thing that I'd like to change is the tint of the UINavigationBar that appears in the "More" item of a UITabBar. I've done this for other NavigationControllers in normal items, but I haven't found where the one in the More item is defined.

Curyous
  • 8,716
  • 15
  • 58
  • 83

1 Answers1

3

In the file that owns the tab bar controller insert the following:

self.tabBarController.moreNavigationController.navigationBar.tintColor = [UIColor blueColor];
rickharrison
  • 4,867
  • 4
  • 35
  • 40