Chatar Veer Suthar
Chatar Veer Suthar

Reputation: 15639

How can I make my iPhone app use the whole screen (no status bar)?

How can I make my iPhone app use the full screen? I don't want to see time and signal bar.

Upvotes: 0

Views: 630

Answers (4)

Oleg Danu
Oleg Danu

Reputation: 4159

Use in your code:

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

Upvotes: 0

Chandan Shetty SP
Chandan Shetty SP

Reputation: 5117

  1. The interface builder by default creates 460*320 view.... change that to 480*320 and align the views....

  2. Set the property in your plist.info for UIStatusBarHidden to true.

Upvotes: 2

mvishnu
mvishnu

Reputation: 1190

I think you can also do that by changing the info.plist file.

I added a line, for "status bar is initially hidden" and checked the box next to it.

Upvotes: 0

Kevin Sylvestre
Kevin Sylvestre

Reputation: 38012

Set the property in your plist.info for UIStatusBarHidden to true.

Upvotes: 0

Related Questions