How to modify the UINavigationBarTintColor for "Configure" in "more" in UITabBarController?
I have 10 UINavigationController within a UITabBarController (everything using Interface builder. )
I can easily set the tint color of all UINavigationController's UINavigationBar using Interface builder.
Similarly I also found that we can modify the More's Tint color as follows.
tBarDashboard.moreNavigationController.navigationBar.tintColor=
[UIColor colorWithRed:30/255.0 green:103/255.0 blue:7/255.0 alpha:1.0];
// here tbarDashboard is my UITabBarController.
But TabBarController default allows to configure the arrangement of navigation controllers if we have too many navigation controllers in tabbarcontroller.
My question is "how to modify the tint color of Configure screen?".