将IOS更新为11版后,我的应用中遇到wkwebview plugin
问题。
离子命令发布了IOS 11 checklist但问题是在检查清单的所有步骤之后仍然存在。
Ios平台版本4.4.0
任何SIM iPnone 5s,6,6s ......的问题
在屏幕底部我有空白区域。请帮助。
更新:删除cordova-plugin-wkwebview-engine
插件后,空白区域消失了。但是我的应用程序中需要这个插件。
答案 0 :(得分:3)
我卸载了插件cordova-plugin-wkwebview-engine
并安装了cordova-plugin-ionic-webview
,它完美无缺。
答案 1 :(得分:3)
关于使用wkwebview时的底层空间,这是一个解决方法:
在第99-100行之间的cordova-plugin-wkwebview-engine \ src \ ios \ CDVWKWebViewEngine.m中添加一些代码,
// re-create WKWebView, since we need to update configuration
WKWebView* wkWebView = [[WKWebView alloc] initWithFrame:self.engineWebView.frame configuration:configuration];
//add begin
#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 110000
if (@available(iOS 11.0, *)) {
[wkWebView.scrollView setContentInsetAdjustmentBehavior:UIScrollViewContentInsetAdjustmentNever];
}
#endif
//add end
wkWebView.UIDelegate = self.uiDelegate;
self.engineWebView = wkWebView;
上面的代码来自cordova-plugin-ionic-webview
答案 2 :(得分:1)
所提供的解决方案均不适合我。 对于iOS 11+,请尝试以下操作,解决了我的问题。
将以下行添加到您的config.xml
<plugin name="cordova-plugin-disable-ios11-statusbar" source="npm" spec="*"/>
祝你好运!
答案 3 :(得分:0)
与其禁用滚动或强制移除 Web 框架上的安全区域,更好的永久性修复是更改 Ionic 在屏幕上垂直拉伸应用程序的方式。根据此线程中的发现,它应该使用 height: 100vh
而不是 height: 100%
:https://issues.apache.org/jira/browse/CB-12886
我有新信息要添加到此错误中,并重申它不是 Cordova 错误。让我介绍 3 个场景:
viewport-fit=auto
和 CSS height: 100%
在 body 元素上:viewport-fit=cover
和 CSS height: 100%
在 body 元素上:viewport-fit=cover
和 CSS height: 100vh
在 body 元素上:在我的主 SCSS 文件中,导入 Ionic 后,我设置了:
html {
height: 100vh;
}
答案 4 :(得分:-1)
添加viewport-fit = cover即可解决此问题。
<meta name="viewport" content="viewport-fit=cover, initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">