I have a situation where I sometimes need a real fullscreen view that also covers the status bar completely. When this view is gone, I want the status bar to be visible again below it. Is there a way to do this?
+3
A:
[[UIApplication sharedApplication] setStatusBarHidden:YES/NO withAnimation: UISatusBarAnimation];
Phlibbo
2010-09-23 14:15:18
the `withAnimation` part doesn't take a `BOOL`. it takes a `UISatusBarAnimation` enum. Options listed [here](http://developer.apple.com/library/ios/documentation/UIKit/Reference/UIApplication_Class/Reference/Reference.html#//apple_ref/c/tdef/UIStatusBarAnimation)
Gordon Fontenot
2010-09-23 14:19:22
Of course, you're right, thank you!
Phlibbo
2010-09-23 14:26:41