最新版本号[免费下载]

Phonegap在ios7上系统状态栏的问题解决

作者:本站编辑 发布时间:2015-11-24 来源:本站原创 点击数:

phonegap+jqm开发的应用,在ios6下没问题,但是在ios7下会出现如下系统状态栏和header重合的问题,搜索了一下,发现这其实是phonegap当前版本的一个已知问题,通过修改./platforms/ios/whhe/Classes/MainViewController.m,就可以解决

[objc] view plaincopy
    - (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];  
    }



本文责任编辑: 加入会员收藏夹 点此参与评论>>
复制本网址-发给QQ/微信上的朋友
AI智能听书
选取音色