I\'m trying to hide the status bar in iOS 4.3 now that setStatusBarHidden:animated: is deprecated:
setStatusBarHidden:animated:
[[UIApplication sharedApplication] setStatusB
The new method is:
- (void)setStatusBarHidden:(BOOL)hidden withAnimation:(UIStatusBarAnimation)animation
Works the same except the animation type is an enum now to support various animation types.