我在Windows 8上的visual studio 2012中开发phonegap app 2.9.0。当我在Windows模拟器中运行我的应用程序时,一切正常。我使用adobe.phonegap.build为ios构建我的应用程序。 并且构建工作正常并且在我的iphone中安装.ipa文件除了splashscreenimage之外一切正常。而不是在我的iPhone中出现白色背景。有没有办法让我的启动画面工作?
有人请帮忙..
答案 0 :(得分:0)
除非在 config.xml 中另有规定,否则iOS平台将在编译期间尝试使用默认的icon.png
。要定义特定图标,请使用提供的指南:Configure Icons and Splash Screens。
默认图标必须命名为icon.png,并且必须位于应用程序文件夹的根目录中。
此外,通过PhoneGap Build config.xml文件使用启动画面非常简单。
编写一些使用PhoneGap Splash Screen API的JavaScript:
document.addEventListener("deviceready", function(e) {
window.setTimeout(function() {
navigator.splashscreen.hide();
},5000);
}, "false");