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

iphone, objective-c, splash-screen, statusbar, xcode

Solution

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.

Problem

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

Original source