Is it still possible to use UIStatusBarStyleBlackOpaque or UIStatusBarStyleBlackTranslucent despite being deprecated as of iOS 7.0? Does "deprecated" mean "look down upon but still allow" or "not allowed at all"?
I've tried doing a
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleBlackTranslucent];
in the method
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
of my AppDelegate.m, but that has no effect. The Status Bar is still so garishly white, haha.