I'm trying to get the standard black translucent status bar in my iOS (iOS 6) app programmatically with no luck. I tried adding the key/value in my info.plist, as well as adding...
[[UIApplication sharedApplication]setStatusBarStyle:UIStatusBarStyleBlackTranslucent];
...to no effect. What else could be causing this?
Thank you everyone for your input! You can set it in the info.plist, or use
Turns out it was translucent - there was just nothing underneath. What i was missing was this line in my view controller
and thats it!
Have a look at my answer to this question.
Basically you can change the statusBar in the project summary. Here you can select Status Bar Style Black Transculent from the drop down menu.
you have got the code right. place it in your app delegate in application did finish launching with an option and it should do the trick. i just built a simple view application and just added your code to the app delegate and added an image to the view to test it and it works. you can see it in screen shot below.
good luck.