我正在使用Ionic的新CLI来构建我的启动画面和Icon。 http://ionicframework.com/docs/cli/icon-splashscreen.html
然而在ios中,我的启动画面消失得太快了。 在我的config.xml中,我有:
<preference name="AutoHideSplashScreen" value="false" />
<preference name="SplashScreen" value="screen"/>
<preference name="SplashScreenDelay" value="5000"/>
但是每次我构建项目时,它都会在我的platforms/ios/myApp/config.xml
中将我的AutoHideSplashScreen值重置为true
我无法控制我的启动画面在ios中显示的时间。
有没有办法设置AutoHideSplashScreen,在构建应用程序时它不会改变?
答案 0 :(得分:2)
首选项名称=&#34; SplashScreenDelay&#34;值=&#34; 8000&#34;
只需在config.xml中更改SplashScreenDelay的值,它将在android和ios中都有效。现在你的价值是5000,这意味着5000毫秒或5秒改变它12000或其他什么,你将得到你期望的结果。