I recently made a change to my project (Adding SWRevealController and Removing my TabbarController), and all of a sudden my status bar won't hide.
I have tried the following solutions:
Hiding via IB Hiding in my base view controller using
(BOOL)prefersStatusBarHidden
Hiding using this code in viewdidload.
[self prefersStatusBarHidden]; [self performSelector:@selector(setNeedsStatusBarAppearanceUpdate)];
- Adding View controller-based status bar appearance set to NO to the plist file.