user559142
user559142

Reputation: 12517

Removing Info Bar in iPhone Interface

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

Answers (2)

Mats Stijlaart
Mats Stijlaart

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

Cajunluke
Cajunluke

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

Related Questions