is there a way to hide the status bar when showing splash screen in iphone? and show again in application
+1
A:
I'm pretty sure that if your Info.plist file has the "Status bar is initially hidden" value set to YES, then it won't show while your application is loading. Once your application has loaded, you can re-show the status bar using UIApplication's setStatusBarHidden:animated: method.
Dave DeLong
2009-07-18 14:52:59
there is no such option in info.plist.is there a way to add it manually
Rahul Vyas
2009-07-20 07:10:38
@Rahul select the last line in thefileand then click the plus button over on the right end of the line. Then type it in yourself.
Dave DeLong
2009-07-20 12:45:15
The method re-show the status bar is now, setStatusBarHidden:withAnimation:
SargeATM
2010-09-16 19:31:51
+2
A:
View -> Property List Type -> iPhone Info.plist. Now, make a new item with "Status bar is initially hidden" checked.
Jonathan Sterling
2009-08-29 21:56:18