Cordova在" Siri App Suggestions"中错误地显示了图标。

时间:2017-06-20 14:43:35

标签: ios cordova

我已将所有可能的图标设置到我自己的图标中,并且随处可见,除了一个地方 - 在Siri建议中:

wrong icon

任何人都可以告诉哪个图标会影响这个图标吗?我花了好几个小时试图解决它!

这是我的config.xml:

<platform name="ios">
    <icon height="180" src="myres/icon/ios/Icon-60@3x.png" width="180" />
    <icon height="60" src="myres/icon/ios/Icon-60.png" width="60" />
    <icon height="120" src="myres/icon/ios/Icon-60@2x.png" width="120" />
    <icon height="76" src="myres/icon/ios/Icon-76.png" width="76" />
    <icon height="152" src="myres/icon/ios/Icon-76@2x.png" width="152" />
    <icon height="40" src="myres/icon/ios/Icon-40.png" width="40" />
    <icon height="80" src="myres/icon/ios/Icon-40@2x.png" width="80" />
    <icon height="57" src="myres/icon/ios/Icon.png" width="57" />
    <icon height="114" src="myres/icon/ios/Icon@2x.png" width="114" />
    <icon height="72" src="myres/icon/ios/Icon-72.png" width="72" />
    <icon height="144" src="myres/icon/ios/Icon-72@2x.png" width="144" />
    <icon height="167" src="myres/icon/ios/Icon-167.png" width="167" />
    <icon height="29" src="myres/icon/ios/Icon-small.png" width="29" />
    <icon height="58" src="myres/icon/ios/Icon-small@2x.png" width="58" />
    <icon height="167" src="myres/icon/ios/Icon-83.5@2x.png" width="167" />
    <icon height="87" src="myres/icon/ios/Icon-29@3x.png" width="87" />
    <icon height="50" src="myres/icon/ios/Icon-50.png" width="50" />
    <icon height="100" src="myres/icon/ios/Icon-50@2x.png" width="100" />
    <! skipping splash entries !-->
</platform>

1 个答案:

答案 0 :(得分:0)

Apple在几个地方概述了适当的尺寸,例如Human Interface Guidelinesthis technical document。你可以参考它,看看发生了什么。您可能想要查找Spotlight图像大小。

这是一个很好的例子,说明为什么使用Apple的一流语言在Xcode中编写本机应用程序是值得的。

修改

在StackOverflow中搜索同样的问题表明Cordova似乎在正确复制图标方面存在问题。请参阅以下问题,建议的解决方案是直接修改Xcode项目:

这两个都被标记为这个的傻瓜,它有更多的信息: