Iphone 提交应用程序时出现图标文件错误

Iphone 提交应用程序时出现图标文件错误,iphone,ios,ipad,Iphone,Ios,Ipad,现在,我要提交我的应用程序。在验证应用程序时,我遇到了以下问题: Icon specified in the info.plist not found under the top level app wrapper: iTunesArtwork info.plist中图标文件的键如下: <key>CFBundleIconFiles</key> <array> <string>iTunesArtwork</string>

现在,我要提交我的应用程序。在验证应用程序时,我遇到了以下问题:

Icon specified in the info.plist not found under the top level app wrapper: iTunesArtwork
info.plist中图标文件的键如下:

<key>CFBundleIconFiles</key>
<array>
    <string>iTunesArtwork</string>
    <string>Icon.png</string>
    <string>Icon@2x.png</string>
    <string>Icon-72@2x.png</string>
    <string>Icon-72.png</string>
</array>
cfbundleconfiles
iTunesArtwork
应用程序图标
Icon@2x.png
图标-72@2x.png
Icon-72.png
我还将iTunesArtwork.png添加到我的项目中(我删除了扩展名“.png”)


我尝试删除info.plist中的值“iTunesArtwork”,该应用程序通过了验证,但该应用程序没有图标。我不知道那有什么关系。如何解决此问题?

摆脱以下问题:

<string>iTunesArtwork</string>
iTunesArtwork
当您的应用程序打包并提交给iTC时,将创建iTunesArtwork文件并将其放置在.ipa包的根目录中


至于你提交时Xcode Organizer中没有显示图标,我认为这是一个错误,因为我的应用程序也正确验证和提交,而且它们也没有在Organizer中显示图标。

“iTunesArtwork文件将被创建”你的意思是我也应该删除iTunesArtwork文件吗?是的,这不是你需要自己提供的文件。