Reputation: 15639
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
Reputation: 4159
Use in your code:
[[UIApplication sharedApplication] setStatusBarHidden:NO withAnimation:UIStatusBarAnimationNone];
Upvotes: 0
Reputation: 5117
The interface builder by default creates 460*320 view.... change that to 480*320 and align the views....
Set the property in your plist.info for UIStatusBarHidden to true.
Upvotes: 2
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
Reputation: 38012
Set the property in your plist.info for UIStatusBarHidden
to true
.
Upvotes: 0