Reputation: 12517
How do you get rid of the info bar displaying the battery, time, carrier, etc when running my app? Is it something I have to do using Objective-C, or is there an option within Interface Builder?
Upvotes: 1
Views: 5384
Reputation: 5098
Go to your project info and add the key value:
Status bar initialy hidden. Set this on YES.
Or add this code to your app delegate:
[[UIApplication sharedApplication] setStatusBarHidden:YES];
Upvotes: 3
Reputation: 3113
There is a way to turn it off in both Interface Builder and in code. It's usually referred to as the "status bar" in Apple's documentation.
Upvotes: 0