I'm setting:
[self.window setTintColor:[UIColor redColor]];
In iOS 7 everything works ok - my navigationController.navigationBar
is white (as I set it transparent) and all icons are colored to red. However in iOS 6 (where navigation bar is set NOT to be transparent) all icons are left with its original colors (eg blue). I can't find a way to color these images in iOS 6, is it possible?
To be more precise:
if (NSFoundationVersionNumber <= NSFoundationVersionNumber_iOS_6_1) {
[self.navigationBar setTintColor:[UIColor whiteColor]];
}
Now I get white navigation bar but also the titles and buttons are white - how to colour them?