-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Statusbar disappears after using inappbrowser #31
Comments
this was driving me crazy too. In the inappbrowser.m file find this: _previousStatusBarStyle = -1; if (IsAtLeastiOSVersion(@"7.0")) { and change it to this: if (IsAtLeastiOSVersion(@"7.0")) { |
me too, and this solved. |
Thanks! |
@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.
The text was updated successfully, but these errors were encountered: