Page 4 of 7
App hiding iPhone status line (clock etc.)
Posted: Thu Oct 31, 2013 12:24 pm
by Maryna Brodina
No, it's not a web app. I compiled .ipa file through Appery.io and installed on device. After iOS update status bar is transparent and overlays app, but for now when you compile .ipa file through Appery.io there won't be status bar at all (as you can see on the screenshot) because there is no official support for iOS 7 yet (we're working on it). You can compile .ipa file in xCode and it should look like described on article.
App hiding iPhone status line (clock etc.)
Posted: Thu Oct 31, 2013 9:20 pm
by Maryna Brodina
Hello Benny! Good news:) Seems to be it's going to be implemented. There is no exact date yet, but it's in our todo list. Please take a look here https://getsatisfaction.com/apperyio/...
App hiding iPhone status line (clock etc.)
Posted: Thu Oct 31, 2013 9:33 pm
by Benny Halperin
Hello Maryna! Thanks, that would be great. Hope you make it. BTW, is your road map page updated and up to date?
App hiding iPhone status line (clock etc.)
Posted: Thu Oct 31, 2013 9:37 pm
by Maryna Brodina
Yes, but October release was moved to early November http://blog.appery.io/. So there is a wrong date.
App hiding iPhone status line (clock etc.)
Posted: Mon Feb 03, 2014 7:09 pm
by Benny Halperin
Hi,
It seems that in your latest version you addressed this issue somehow.
My app is now rendered in one HTML file (jqm multi-page template). And now the app and iPhone status bar overlap. See this screenshot:
Note: my app by coincidence includes a status line of its own - not the phone's status - but another device I monitor. This status line is at top of page too.
App hiding iPhone status line (clock etc.)
Posted: Mon Feb 03, 2014 8:19 pm
by Maryna Brodina
Hello! It's iOS7 version issue http://stackoverflow.com/questions/18..., please take a look here. We'll check what we can do from our side.
App hiding iPhone status line (clock etc.)
Posted: Thu Feb 06, 2014 8:52 am
by Benny Halperin
I suspect that you have it right (status line above app) when the following Appery App Settings option is checked off:
Render all pages in one HTML file (jQuery Mobile multi-page template)
Overlap when above options is selected.
Can you verify?
App hiding iPhone status line (clock etc.)
Posted: Thu Feb 06, 2014 10:00 am
by Rafael MartÃnez
Hi, we have also experienced the same issue.
We solved the problem manually by including this code:
if ([[[UIDevice currentDevice] systemVersion] floatValue] = 7) {
CGRect viewBounds = [self.webView bounds];
viewBounds.origin.y = 20;
viewBounds.size.height = viewBounds.size.height - 20;
self.webView.frame = viewBounds;
}
in the CDVViewCntrolle.m generated by Appery.IO and compiling with XCode.
App hiding iPhone status line (clock etc.)
Posted: Thu Feb 06, 2014 10:03 am
by Kateryna Grynko
Hi!
Rafael, thank you for sharing this!
Benny, could you please try the suggested solution? Let us know if this helps.
App hiding iPhone status line (clock etc.)
Posted: Thu Feb 06, 2014 10:20 am
by Rafael MartÃnez
That's all right.
In any case, I think that this an important issue and should be fixed by Appery.IO in the platform.