应用上传到Appstore:
ERROR ITMS-90022: "Missing required icon file. The bundle does not contain an app icon for iPhone / iPod Touch of exactly '120x120' pixels, in .png format for iOS versions >= 7.0."
解决方法:
1. 工程需要的*.png 文件都加到工程里来。
2. 在plist 文件里,加入
<key>CFBundleIconFiles</key>
<array>
<string>*@2x.png</string>
<string>AA.png</string>、
<string>AA@2x.png</string>
</array>
本文介绍了如何解决在上传应用到AppStore时遇到的图标缺失问题。主要步骤包括确保所有必要的*.png图标文件已添加到工程中,并在plist文件中正确配置图标文件路径。
1590

被折叠的 条评论
为什么被折叠?



