Is there a way to hide the status bar when showing splash screen in iphone? and 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. |
|||||||||||||||||||||
|
|
The correct key in .plist is "UIStatusBarHidden" and make checked right side.It'l become "Status bar is initially hidden" then automatically. In my practice, you can control the StatusBar's show/hide anywhere by when hide:
when show:
hope this was helpful to you. |
|||||
|
|
View -> Property List Type -> iPhone Info.plist. Now, make a new item with "Status bar is initially hidden" checked. |
|||||||
|
|
Following up Dave's answer the key "Status bar is initially hidden" didn't work for me under iOS 4.3 BUT the key "UIStatusBarHidden" and then setting it's type to Boolean and checking the box did the trick. This developer article got me onto the Info.plist keys and then working out the equivalent key for hiding it wasn't too hard. Interestingly the "UIStatusBarStyle" needs to use the enumeration name as a string for it to work. |
|||
|
|
|
write this 1 line in to your main .m viewDidload method
or select info.plist file from your project supporting files folder in workspace set statusbarinitialyhidden to YES |
||||
|
|
|
is deprecated
is the correct
UIStatusBarAnimation which can be: UIStatusBarAnimationNone or UIStatusBarAnimationFade or UIStatusBarAnimationSlide |
|||
|
|