admin 发表于 2014-7-9 17:21:35

phonegap jqmobi ios7状态栏重叠

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

- (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.
    if ([[ systemVersion] floatValue] >= 7) {
      CGRect viewBounds = ;
      viewBounds.origin.y = 20;
      viewBounds.size.height = viewBounds.size.height - 20;
      self.webView.frame = viewBounds;
    }
    ;
}


wyz191 发表于 2014-7-22 08:43:43

在app的plist文件中,添加两个属性:UIStatusBarHidden和UIViewControllerBasedStatusBarAppearance

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

qiurj 发表于 2015-4-30 02:42:08

人不错,学习学习 感觉phonegap+html越来越火了。

巴黎路边的彦佳~ 发表于 2015-4-29 14:12:47

好帖就是要顶 学习学习 html5趋势不可挡啊,虽然还在学习阶段

ytlvy 发表于 2015-4-30 11:27:35

非常好 感谢 开始学习html5 app开发了

NuQut 发表于 2015-4-29 19:05:19

html5 是趋势

university 发表于 2015-4-29 18:56:30

页: [1]
查看完整版本: phonegap jqmobi ios7状态栏重叠