views:

29

answers:

1

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.

+1  A: 

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

self.tabBarController.moreNavigationController.navigationBar.tintColor = [UIColor blueColor];
rickharrison