Maryna Brodina
Posts: 0
Joined: Thu Apr 05, 2012 7:27 am

App hiding iPhone status line (clock etc.)

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.

Maryna Brodina
Posts: 0
Joined: Thu Apr 05, 2012 7:27 am

App hiding iPhone status line (clock etc.)

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/...

Benny Halperin
Posts: 0
Joined: Wed Oct 02, 2013 8:13 am

App hiding iPhone status line (clock etc.)

Hello Maryna! Thanks, that would be great. Hope you make it. BTW, is your road map page updated and up to date?

Maryna Brodina
Posts: 0
Joined: Thu Apr 05, 2012 7:27 am

App hiding iPhone status line (clock etc.)

Yes, but October release was moved to early November http://blog.appery.io/. So there is a wrong date.

Benny Halperin
Posts: 0
Joined: Wed Oct 02, 2013 8:13 am

App hiding iPhone status line (clock etc.)

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.

Image

Maryna Brodina
Posts: 0
Joined: Thu Apr 05, 2012 7:27 am

App hiding iPhone status line (clock etc.)

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.

Benny Halperin
Posts: 0
Joined: Wed Oct 02, 2013 8:13 am

App hiding iPhone status line (clock etc.)

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?

Rafael Martínez
Posts: 0
Joined: Tue Apr 23, 2013 5:19 pm

App hiding iPhone status line (clock etc.)

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.

Kateryna Grynko
Posts: 0
Joined: Thu Nov 15, 2012 9:13 am

App hiding iPhone status line (clock etc.)

Hi!

Rafael, thank you for sharing this!
Benny, could you please try the suggested solution? Let us know if this helps.

Rafael Martínez
Posts: 0
Joined: Tue Apr 23, 2013 5:19 pm

App hiding iPhone status line (clock etc.)

That's all right.

In any case, I think that this an important issue and should be fixed by Appery.IO in the platform.

Return to “Issues”