Dirk Gissing
Posts: 0
Joined: Sat Oct 12, 2013 4:18 pm

Header overlap with iPhone status bar as shown in screen shot

I placed it just before the "@end",, should I have placed it somewhere else?

Do you know when this problem will be fixed? Will it be fixed together with the push notification bug (data.aps.alert doesnt show anything)? It's almost april..

Also, I've changed my .plist file and now any changes I make in the settings it doesn't change it in the .plist file. How do I fix this?

Dirk Gissing
Posts: 0
Joined: Sat Oct 12, 2013 4:18 pm

Header overlap with iPhone status bar as shown in screen shot

Maryna, your solution for the .plist file doesn't work. The status bar still overlaps with the header.

Alena Prykhodko
Posts: 0
Joined: Tue Apr 09, 2013 7:36 am

Header overlap with iPhone status bar as shown in screen shot

Hello Dirk, this problem is already fixed on our Test environment, will be pushed on Production with next release (it is moved on mid-April)
We'll look into other questions and get back with reply.

Dirk Gissing
Posts: 0
Joined: Sat Oct 12, 2013 4:18 pm

Header overlap with iPhone status bar as shown in screen shot

Thank you Alena! Are both problems fixed mid-April? The header problem and the push notification (data.aps.alert) problem?

Illya Stepanov
Posts: 0
Joined: Mon Mar 18, 2013 8:48 am

Header overlap with iPhone status bar as shown in screen shot

Hi Dirk - Please can you clarify here:
[quote:]
the push notification bug (data.aps.alert doesnt show anything)?
[/quote]
-- can you give a corresponding link to a given problem?

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

Header overlap with iPhone status bar as shown in screen shot

Hello!

Yes, push problem should be fixed too.

Yan Yi
Posts: 0
Joined: Sat Jan 25, 2014 7:38 pm

Header overlap with iPhone status bar as shown in screen shot

Hi,

I got a Appery Build error for .ipa file after following the instructions here to fix the header overlap problem.

I tried
http://stackoverflow.com/questions/19... and inserted code- (void)viewWillAppear:(BOOL)animated
{
// View defaults to full size. If you want to customize the view's size, or its subviews (e.g. webView),
// you can do so here.
//Lower screen 20px on ios 7
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;
}
[super viewWillAppear:animated];
}/code into CDVViewController.m from the Appery builder source code.

Shaun Summers
Posts: 0
Joined: Thu Jul 25, 2013 3:49 pm

Header overlap with iPhone status bar as shown in screen shot

Hello,

Did a fix for this issue get released?

I have my app set up as a html5 web app and when IOS opens it in full screen then I get the header overlaping with the status bar as described above.

Regards, Shaun.

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

Header overlap with iPhone status bar as shown in screen shot

Hello!

This issue is fixed for hybrid apps only, fix won't work in browser.
But there is a workaround, please take a look here https://getsatisfaction.com/apperyio/...

Return to “Issues”