我正在尝试为所有的iOS设备构建我的Ionic4应用程序。它在iOS11上工作得很好,但我想让它在iOS10上也工作,所以我尝试了所有的可能性。
cordova plugin rm cordova-plugin-ionic-webview
cordova plugin add cordova-plugin-ionic-webview@2.3.1 --save-exact
<preference name="deployment-target" value="9.0" />
<preference name="UseScheme" value="true" />发布于 2020-06-24 18:59:33
您可以尝试我所做的这些步骤:
config.xml中的
app.component.ts中的
setTimeout(() => { this.splashScreen.hide();},1000);
希望它能起作用!
https://stackoverflow.com/questions/57219936
复制相似问题