removed dead ImageShack link
As you can see the view I need to change is the provided view to customize the tabbar order. I want to change the color of the navi
There is an easy way to change all the navigation bar styles instead of changing each one separately.
[[UINavigationBar appearance] setBarStyle:UIBarStyleBlack];
Just set this code in one of your initial views. With this, your more navigation controller and the configuration navigation controller (that appears after clicking "Edit" in more navigation controller) get a different style.
Like this you can change its color to a different one or change the background image.
Hope this helps.