Cordova iPhone专用应用程序未在iPad上显示图标

时间:2017-10-18 13:29:56

标签: ios iphone cordova ipad

我的cordova iPhone专用应用程序出现此问题: 在iPad上安装时,它不会显示正确的主页图标,但会显示"缺少图标"文件。

config.xml似乎没问题:

<platform name="ios">
    <allow-intent href="itms:*" />
    <allow-intent href="itms-apps:*" />
    <splash height="480" src="res/screen/ios/Default~iphone.png" width="320" />
    <splash height="960" src="res/screen/ios/Default@2x~iphone.png" width="640" />
    <splash height="1136" src="res/screen/ios/Default-568h@2x~iphone.png" width="640" />
    <splash height="1334" src="res/screen/ios/Default-667h.png" width="750" />
    <splash height="2208" src="res/screen/ios/Default-736h.png" width="1242" />
    <splash height="1242" src="res/screen/ios/Default-Landscape-736h.png" width="2208" />
    <icon height="180" src="res/icons/ios/icon-60@3x.png" width="180" />
    <icon height="120" src="res/icons/ios/icon-60@2x.png" width="120" />
    <icon height="40" src="res/icons/ios/icon-40.png" width="40" />
    <icon height="80" src="res/icons/ios/icon-40@2x.png" width="80" />
    <icon height="57" src="res/icons/ios/icon.png" width="57" />
    <icon height="114" src="res/icons/ios/icon@2x.png" width="114" />
    <icon height="29" src="res/icons/ios/icon-small.png" width="29" />
    <icon height="58" src="res/icons/ios/icon-small@2x.png" width="58" />
    <icon height="87" src="res/icons/ios/icon-small@3x.png" width="87" />
    <icon height="72" src="res/icons/ios/icon-72.png" width="72" />
    <icon height="144" src="res/icons/ios/icon-72@2x.png" width="144" />
    <icon height="76" src="res/icons/ios/icon-76.png" width="76" />
    <icon height="152" src="res/icons/ios/icon-76@2x.png" width="152" />
    <icon height="167" src="res/icons/ios/icon-83.5@2x.png" width="167" />
    <icon height="50" src="res/icons/ios/icon-50.png" width="50" />
    <icon height="100" src="res/icons/ios/icon-50@2x.png" width="100" />
    <icon height="1024" width="1024" src="res/icons/ios/icon-1024.png" />
    <icon height="20" width="20" src="res/icons/ios/icon-20.png" />
    <icon height="40" width="40" src="res/icons/ios/icon-20@2x.png" />
    <icon height="60" width="60" src="res/icons/ios/icon-20@3x.png" />
</platform>

甚至AppIcon文件似乎都是正确的。

enter image description here

当然可以在iPhone上安装它。

有什么想法吗?

谢谢!

1 个答案:

答案 0 :(得分:2)

与我的仅限iPhone的应用程序存在同样的问题并在此处找到解决方案:

Empty app icon on iPad for iPhone only application

所以我只需删除Xcode中Info.plist中的“CFBundleIcons”键,现在一切正常。

希望它也会对你有所帮助,

史蒂夫