@implementation UIViewController (preferredStatusBar)
-(UIStatusBarStyle) preferredStatusBarStyle
{
return UIStatusBarStyleLightContent;
}
@end
I made this category so all the controllers implements this attribute, UIStatusBarStyleLightContent
can change during application.
Everything works fine except for modal controllers. They ignore completely status bar style.