PhoneGap中文网

标题: cordova xml页面遮挡ios标题栏 [打印本页]

作者: sss2    时间: 2016-10-13 12:03
标题: cordova xml页面遮挡ios标题栏
cordova xml页面顶部遮挡ios标题栏导致页面顶部控件不能使用

作者: sss2    时间: 2016-10-13 16:14
以解决在  Mainviewcontroller.m的 viewwillappear方法中 添加

  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 viewWillDisappear:animated];
   
   
   
}

这样就ok了。











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