views:

1452

answers:

2

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
there is no such option in info.plist.is there a way to add it manually
Rahul Vyas
@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
The method re-show the status bar is now, setStatusBarHidden:withAnimation:
SargeATM
+2  A: 

View -> Property List Type -> iPhone Info.plist. Now, make a new item with "Status bar is initially hidden" checked.

Jonathan Sterling
Thanks, Jonathan!
SargeATM
Not a problem! My pleasure.
Jonathan Sterling