Cordova / Phonegap Splashscreen - iOS - 不显示自定义图片

时间:2017-12-05 14:42:17

标签: ios xml cordova phonegap

最近苹果发布了一项新规范,转而采用新型故事板防溅板,允许在较少数量的防溅板上使用不同的设备尺寸。要配置我们的应用程序以使用iPhone X,需要采用这个新系统以允许全屏查看。我们的app文件结构如下:

  • ROOT
    • config.xml中
    • RES
      • 屏幕
        • IOS
          • Default@2x~iphone~anyany.png
          • Default@2x~iphone~comany.png
          • Default@2x~iphone~comcom.png
          • Default@3x~iphone~anyany.png
          • Default@3x~iphone~anycom.png
          • Default@3x~iphone~comany.png
          • Default@2x~ipad~anyany.png
          • Default@2x~ipad~comany.png
    • WWW
      • app files

准备上传到phonegap版本时,www文件夹的config.xml,res文件夹和内部内容将移动到一个文件夹。但是,将应用程序下载到我的设备时,默认的启动画面会显示。

当前的config.xml布局(运行cordova v7)

<platform name="ios">
    <preference name="deployment-target" value="7.0" />
    <icon height="512" src="res/icon/iTunesArtwork.png" width="512" />
    <icon height="1024" src="res/icon/ios/iTunesArtwork@2x.png" width="1024" />
    <icon height="180" src="res/icon/ios/Icon-60@3x.png" width="180" />
    <icon height="120" src="res/icon/ios/Icon-60@2x.png" width="120" />
    <icon height="60" src="res/icon/ios/Icon-60.png" width="60" />
    <icon height="76" src="res/icon/ios/Icon-76.png" width="76" />
    <icon height="152" src="res/icon/ios/Icon-76@2x.png" width="152" />
    <icon height="40" src="res/icon/ios/Icon-Small-40.png" width="40" />
    <icon height="80" src="res/icon/ios/Icon-Small-40@2x.png" width="80" />
    <icon height="120" src="res/icon/ios/Icon-Small-40@3x.png" width="120" />
    <icon height="29" src="res/icon/ios/Icon-Small.png" width="29" />
    <icon height="58" src="res/icon/ios/Icon-Small@2x.png" width="58" />
    <icon height="87" src="res/icon/ios/Icon-Small@3x.png" width="87" />

    <splash src="res/screen/ios/Default@2x~iphone~anyany.png" />
    <splash src="res/screen/ios/Default@2x~iphone~comany.png" />
    <splash src="res/screen/ios/Default@2x~iphone~comcom.png" />
    <splash src="res/screen/ios/Default@3x~iphone~anyany.png" />
    <splash src="res/screen/ios/Default@3x~iphone~anycom.png" />
    <splash src="res/screen/ios/Default@3x~iphone~comany.png" />
    <splash src="res/screen/ios/Default@2x~ipad~anyany.png" />
    <splash src="res/screen/ios/Default@2x~ipad~comany.png" />
</platform>

<plugin name="cordova-plugin-splashscreen" spec="~4.0.0" />
<preference name="ShowSplashScreenSpinner" value="false" />

预期结果是显示自定义图像,以及应用程序在我的iPhone X上全屏显示。而是显示如下:

https://imgur.com/a/ehtCy

任何有助于解决此问题的帮助都会受到很多关注,因为我似乎无法为遇到此问题的任何人找到最近的论坛帖子。

1 个答案:

答案 0 :(得分:0)

自我排序的答案。目前PhoneGap Build(我正在使用的服务不使用iOS 4.5.1版本,这是最新的iPhone X全屏幕所必需的。希望4.5.1将很快进入云服务。