Open orenagiv opened 10 years ago
this was driving me crazy too.
In the inappbrowser.m file find this:
_previousStatusBarStyle = -1;
if (IsAtLeastiOSVersion(@"7.0")) { [[UIApplication sharedApplication] setStatusBarStyle:_previousStatusBarStyle]; }
and change it to this:
if (IsAtLeastiOSVersion(@"7.0")) { [[UIApplication sharedApplication] setStatusBarStyle:_previousStatusBarStyle]; } _previousStatusBarStyle = -1;
me too, and this solved.
Thanks! I'll create a pull-request for PhoneGap Build?
@orenagiv Cool~
The Statusbar disappears after opening a URL using in-app-browser.
My config.xml definitions are:
I read somewhere, that if the UIViewControllerBasedStatusBarAppearance will be set to "YES" it might solve it. However, in my case, I would like the App to start without a statusbar, and only make it appear later on after the App is loaded. So I need those settings above.