I was using
<key>UIStatusBarHidden</key>
<true/>
in info.plist file to hide status bar for ios. Also in my RootViewController.mm is
- (BOOL)prefersStatusBarHidden
{
return YES;
}
to fix hiding status bar on ios7. Everything worked fine untill I tried this code on ios13. At ios13 status bar does not hide anymore. Does anybody know how to hide status bar for ios13? I also tried to add
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
in info.plist, but nothing seemed to work.