I'm trying to hide the status bar in iOS 4.3 now that setStatusBarHidden:animated:
is deprecated:
[[UIApplication sharedApplication] setStatusBarHidden:YES animated:NO]; //deprecated
The only option that exists in the plist file is: Status bar is initially hidden. Which only hides the status bar at the start of the app.
Cheers