I looked at this site, and on others, how to set up a change in the hue of navigation, I saw examples, but not quite what I needed, so any help would be appreciated.
my application delegate I have:
@synthesize window; @synthesize tabBarController; @synthesize navigationController; @synthesize navigationController1; @synthesize navigationController2; @synthesize viewController; @synthesize viewController2; @synthesize viewController3;
When I enter the code self.navigationController.navigationBar setTintColor:[UIColor blackColor]
as above, it changes only one of my navigation controllers, but not the one I need.
I have 7 elements in my tab, and when I click "MORE ...", I get a table view with other elements that do not fit on the main screen, the navigation bar is added automatically, and no matter what I canβt change this shade of the navigation bar, I can change the ones that I have @synthesize
, but not automatically entered.
Can someone please let me know how to change the automatically placed navigation bar?
source share