ios设备的离子黑屏问题

时间:2017-05-30 09:43:40

标签: angularjs ionic-framework

在ios设备的离子应用程序中,当我使用应用程序时,如果我在屏幕外点击,则屏幕变为空白。它会显示白屏。但是这个问题只发生在iPhone设备上,而不是Android设备上。

我也尝试用<ion-content>替换<ion-scroll> ..并设置overflow-scroll="false"

并将其放在index.html文件中

<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">

但我仍然遇到同样的问题。

有人可以帮我解决这个问题吗?

谢谢,

2 个答案:

答案 0 :(得分:1)

我有同样的问题......在我的情况下,它适用于iOS和Android

我配置我的config.xml,我认为可以帮助你

<preference name="SplashScreenDelay" value="2000"/>
<preference name="FadeSplashScreenDuration" value="2000"/>
<preference name="SplashScreen" value="screen"/>
<preference name="ShowSplashScreenSpinner" value="false"/>
<preference name="AutoHideSplashScreen" value="false" />

答案 1 :(得分:1)

我在一个离子应用程序中遇到了同样的问题。我只是在 app.js 中将 swipeBackEnabled 添加到 false ,魔法适用于我。

$ionicConfigProvider.views.swipeBackEnabled(false);