应用上传到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>