Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i want to hide the status bar when i launch my app to view launch image that was covered by status bar. so in plist i added

Status bar is initially hidden YES

and status bar is covered. My problem is that status bar is covered always in my app, i want to hide status bar only for launch image, what can i do?

share|improve this question

4 Answers

[[UIApplication sharedApplication] setStatusBarHidden:NO animated:NO];
share|improve this answer
Nice, this did it! thanks. – Eru Rōraito Jan 23 at 13:45

OR

you can also set the (Status bar Initially Hidden)Property to "NO" in Info.plist file in your Application.

Just uncheck this property.

share|improve this answer

you can do this by adding property, "Status bar Initially Hidden" to plist as shown below : - enter image description here

share|improve this answer
up vote 2 down vote accepted

SOLVED

[[UIApplication sharedApplication] setStatusBarHidden:NO withAnimation:NO];

using this at launch of app :)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.