tags:

views:

112

answers:

2

I have a TabBarController with top black navigation bar, but once i navigate to "More" option, the top bar is becoming default blue. I have separate nav.controllers in the tab bar which all are set to top black nav. bar. But how the more option is only getting in blue ? Is there any way to change it's color ? Please help

+1  A: 

I got a solution. Do share if any one have other thoughts.

My solution :

if (self.moreNavigationController) { self.moreNavigationController.navigationBar.tintColor = [UIColor blackColor]; }

Sreehari
A: 

Hi I have the same problem where to put this condition i put it in the appDelegate class but it is showing me error in self.moreNavigationController. because I am not assigning moreNavigationController it comes automatically please help.

Naren