PhoneGap中文网

标题: phonegap jqmobi ios7状态栏重叠 [打印本页]

作者: admin    时间: 2014-7-9 17:21
标题: phonegap jqmobi ios7状态栏重叠
用Phonegap+jqmobi 开发的应用,在ios6下没问题,但是在ios7下会出现如下系统状态栏和header重合的问题,这时候我们可以用以下办法,使得状态栏和我们的应用分离:Classes中找到MainViewController.m
在其中找到如下代码片段,并修改:

  1. - (void)viewWillAppear:(BOOL)animated
  2. {
  3.     // View defaults to full size.  If you want to customize the view's size, or its subviews (e.g. webView),
  4.     // you can do so here.
  5.     if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7) {
  6.         CGRect viewBounds = [self.webView bounds];
  7.         viewBounds.origin.y = 20;
  8.         viewBounds.size.height = viewBounds.size.height - 20;
  9.         self.webView.frame = viewBounds;
  10.     }
  11.     [super viewWillAppear:animated];
  12. }
复制代码




作者: wyz191    时间: 2014-7-22 08:43
在app的plist文件中,添加两个属性:UIStatusBarHidden[YES]和UIViewControllerBasedStatusBarAppearance[NO]

在网上爬下来的,实用后也可实现,共享一下

作者: 巴黎路边的彦佳~    时间: 2015-4-29 14:12
好帖就是要顶 学习学习 html5趋势不可挡啊,虽然还在学习阶段
作者: university    时间: 2015-4-29 18:56

作者: NuQut    时间: 2015-4-29 19:05
html5 是趋势
作者: qiurj    时间: 2015-4-30 02:42
人不错,学习学习 感觉phonegap+html越来越火了。
作者: ytlvy    时间: 2015-4-30 11:27
非常好 感谢 开始学习html5 app开发了




欢迎光临 PhoneGap中文网 (http://bbs.phonegap100.com/) Powered by Discuz! X3.2