在 Visual Studio Tools for Apache Cordova 上设置 iPhone 6 启动图像

Set an iPhone 6 launch image on Visual Studio Tools for Apache Cordova

我们正在为 Cordova 使用 VS 扩展的 CTP 3。
我们正在尝试为 iPhone 6 和 iPhone 6+ 添加启动画面。我们需要它来解决和发布应用程序中 iPhone 6+ 分辨率不正确的问题。
ios 的启动画面文件是否有命名约定?
我们知道这些文件名正在添加到 XCode 项目中并成功运行(在 res\screens\ios 中):

我相信这些是 iPhone6 和 6plus 的命名约定:

res/icons/ios/icon-60@3x.png (180x180) 
res/screens/ios/screen-iphone-portrait-667h.png (750x1334) 
res/screens/ios/screen-iphone-portrait-736h.png  (1242x2208) 
res/screens/ios/screen-iphone-landscape-736h.png (2208x1242) 

我们最终强制 vs-mda-remote 使用有助于解决问题的 cordova 4.2.0(参见 this question)。
然后我们将其添加到 config.xml 和相应的文件中。

  <platform name="ios">
    <splash src="res/screens/ios/screen-414w-736h@3x~iphone.png" width="1242" height="2208"/>
    <splash src="res/screens/ios/screen-iphone-landscape-736h.png" width="2208" height="1242"/>
  </platform>