Hi all, I read through this all, and it's nice to know that you are working on a fix, but the sooner the better. We are planning to release a newer version of our app, and releasing it without the header would cause a lot of chaos.
Thanks!
Hi all, I read through this all, and it's nice to know that you are working on a fix, but the sooner the better. We are planning to release a newer version of our app, and releasing it without the header would cause a lot of chaos.
Thanks!
Maryna Brodina, could you include some screenshots? I have not been using Appery as much since the addition of source file editing and it would be nice to know exactly where I am looking for things.
Hello! You can find .plist file on Source tab: ios/projectName/projectName/projectName-Info.plist and change the following lines so that it looks like this precode<key>UIStatusBarHidden</key>
<true/>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>/code/pre
We're sorry for inconvenience, it's going to be fixed in March.
So, weird scenario, the source file does not have these keys
There is no UIViewControllerBasedStatusBarAppearance key on my screenshot. You need to add it manually. Have you done it?
Hi, we have also experienced the same issue.
We solved the problem 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 CDVViewController.m generated by Appery.IO and compiling with XCode.
Thank you for sharing!