美文网首页
Cordova在iOS上面几个兼容问题

Cordova在iOS上面几个兼容问题

作者: 阿拉丁珍藏的神灯 | 来源:发表于2017-05-26 15:56 被阅读168次

1、使用CDVKeyboard插件,填写输入框,键盘上移20px的问题

Keyboard.automaticScrollToTopOnHiding =true;

2、出现导航条上移20px,一部分的导航条被状态栏遮挡的问题

- (void)viewWillAppear:(BOOL)animated

{

if([[[UIDevicecurrentDevice]systemVersion]floatValue]>=7)

{

CGRectviewBounds=[self.webViewbounds];

viewBounds.origin.y=20;

viewBounds.size.height=viewBounds.size.height-20;

self.webView.frame=viewBounds;

}

[superviewWillAppear:animated];

}

-(void)viewWillDisappear:(BOOL)animated

{

if([[[UIDevicecurrentDevice]systemVersion]floatValue]>=7)

{

CGRectviewBounds=[self.webViewbounds];

viewBounds.origin.y=20;

viewBounds.size.height=viewBounds.size.height+20;

self.webView.frame=viewBounds;

}

[superviewWillDisappear:animated];

}

3、使用不能打开网页

一些白名单没有添加,比如:<allow-navigation href="*">

相关文章

网友评论

      本文标题:Cordova在iOS上面几个兼容问题

      本文链接:https://www.haomeiwen.com/subject/pzcstxtx.html