Is there a way to hide the status bar when showing splash screen in iPhone and then show again in application?
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.