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;
}
;
}
在app的plist文件中,添加两个属性:UIStatusBarHidden和UIViewControllerBasedStatusBarAppearance
在网上爬下来的,实用后也可实现,共享一下
人不错,学习学习 感觉phonegap+html越来越火了。 好帖就是要顶 学习学习 html5趋势不可挡啊,虽然还在学习阶段 非常好 感谢 开始学习html5 app开发了 html5 是趋势
页:
[1]