iOS 13 No longer hiding status bar as with previous versions

iOS 13 No longer hiding status bar as with previous versions (but when I deploy the same code to iOS 12 down all works as expected). This only happens on my iPhones (iPhoneXS Max & iPhone XS so far; haven't tried on my iPhone 7) and it does not happen on my iPad. Is in line with what other developer observed in his below reply.


Everywhere in the app I have:


- (bool) prefersStatusBarHidden {

return true;

}


And I have the usual settings in Info.plist:


<key>UIStatusBarHidden</key>

<true/>

<key>UISupportedInterfaceOrientations</key>

<array>

<string>UIInterfaceOrientationPortrait</string>

</array>

<key>UISupportedInterfaceOrientations~ipad</key>

<array>

<string>UIInterfaceOrientationPortrait</string>

</array>

<key>UIViewControllerBasedStatusBarAppearance</key>

<false/>


Submitted Feedback Report: FB6123427

Accepted Reply

Looks like the issue is now fixed in iOS 13 Beta 2.

Replies

Same here, but I only experience this problem for iPhone in portrait. For iPad and iPhone/landscape it works as expected.


UPDATE: with beta 2, this problem seems to be fixed. Thanks, much appreciated!

Same here, experience this problem on iPhone Xr in portrait.

same here, iOS 13 beta 1, on iPhone 7 portrait mode. Possible bug in iOS 13.

Looks like the issue is now fixed in iOS 13 Beta 2.

I have a bug hide/show status bar in Xcode Version 11.4.
The 'prefersStatusBarHidden' not called.
And the status bar always is shown.
How can I fix this bug?