1:IOS7状态栏覆盖页面问题:
前
后
当然这也是临时解决方案,最好还是兼容状态栏UI更美观
代码如下:
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; }
2:下拉黑色背景问题:
在config.xml中添加下面两句就ok