how to hide status bar when splash screen appears in iphone?

Rahul Vyas picture Rahul Vyas · Jul 18, 2009 · Viewed 49.3k times · Source

Is there a way to hide the status bar when showing splash screen in iPhone and then show again in application?

Answer

Dave DeLong picture Dave DeLong · Jul 18, 2009

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.