我在我的应用中添加了必需的图标文件。但是当我将应用程序上传到应用程序商店时,它会向我显示错误,说明 Bundle不包含图标文件57 * 57 ,但在我的应用程序中我已经拥有它。
我在Xcode 5中开发了这个应用程序,那时我在info.plist中添加了图标,因为在某些设备上图标不可见。
<dict>
<key>CFBundlePrimaryIcon</key>
<dict>
<key>CFBundleIconFiles</key>
<array>
<string>icon76</string>
<string>icon40</string>
<string>icon40@2x</string>
<string>icon60@2x</string>
<string>icon40@3x</string>
<string>icon50@2x</string>
<string>icon50</string>
</array>
<key>UIPrerenderedIcon</key>
<true/>
</dict>
</dict>
那么我们为什么要在plist中添加图标,因为在xcode 7的最新项目中,我没有在plist中添加图标名称,它仍然在应用程序商店上传。
更新
<key>CFBundleIcons</key>
<dict/>
<key>CFBundleIcons~ipad</key>
<dict/>
在plist&amp;试图运行它没有显示任何图标