views:

57

answers:

1

I have some items that change the navigation bar color when the detail pages are accessed. My issue is getting back to the default navigation bar color. What color is it? It is not blue or gray for sure.

Also when going "back", where is the best place to put this color change? Unload does not seem to work for this. On the table view controller, Placing the color change at the end of the "didSelectRowAtIndexPath" changes it prematurely.

What is the default navigation bar color? Where should I place the change when the user is leaving the detail view?

A: 

I think you can just set the navigation bar color to nil and it will revert to its default.

Brian
Thanks to Brian...The following worked perfectly:UINavigationBar *bar = [self.navigationController navigationBar]; [bar setTintColor:nil];
TheHockeyGeek