I have an iOS 7 application that has a NavigationController inside a TabbarController. Then I adjust the background color of the bars
[[UINavigationBar appearance] setBarTintColor:[UIColor blueColor]]; [[UITabBar appearance] setBarTintColor:[UIColor blueColor]];
It is working fine. But if there is a ViewController that should not be covered with stripes, like this
self.edgesForExtendedLayout = UIRectEdgeTop;
This means that this ViewController does not want to be covered by Tabbar. But that makes the Tabbar darker than usual.
I think this is because I use my own color for the bars. How to fix?
source share