I\'m trying to hide the status bar in iOS 4.3 now that setStatusBarHidden:animated: is deprecated:
setStatusBarHidden:animated:
[[UIApplication sharedApplication] setStatusB
But how about [[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation:UIStatusBarAnimationNone];
[[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation:UIStatusBarAnimationNone];
See the UIApplication reference.