I have an app where all of the views, except one, needs a status bar displayed on top. After spending time googling and searching here, I cannot find a solid answer that works.
Right now, with View controller-based status bar
appearance set to YES
, and
-(BOOL)prefersStatusBarHidden
{
return YES;
}
in my 'hidden status bar' ModalViewController, the upper half of my Navigation Item is cut off.
https://i.stack.imgur.com/m2xc2.png
Currently, the rest of the app's view's doesn't have a status bar. Suggestions?