I would like to show and hide the Status bar on some controllers. Can this be done or is it more of an overall app setting.
I have seen many posts/questions about th
On iOS 7 and later, just implement -prefersStatusBarHidden, for example in a UIViewController that should hide the status bar:
-prefersStatusBarHidden
UIViewController
- (BOOL)prefersStatusBarHidden { return YES; }
The default is NO.
NO