Archive

Posts Tagged ‘iphone sdk’

Removing the status bar from an iPhone application

March 28th, 2009

To remove the status bar from your application simply add the following line of code to your project:

 
[[UIApplication sharedApplication] setStatusBarHidden:YES animated:NO];
 

You can also edit your plist file and add a key for UIStatusBarHidden and set its value to true.

rjett Uncategorized , , ,