XCode4.3.2上传App Store时发生图标错误的解决

在用新版的XCode上传应用时,碰到图标没找到的错误,此时一般有两种解决方法:

1、重新下载新版本的Application Loader。如果你当前使用的已经是新版本的Application Loader,那么需要修改.plist文件:

2、手工添加.plist中的键值对——

    原来表示图标的代码为:

    <key>CFBundleIcons</key>
    <dict>
        <key>CFBundlePrimaryIcon</key>
        <dict>
            <key>CFBundleIconFiles</key>
            <array>
                <string>icon.png</string>
                <string>[email protected]</string>
            </array>
            <key>UIPrerenderedIcon</key>
            <true/>
        </dict>
    </dict>

现在,在其上面添加以下代码:

    <key>CFBundleIconFiles</key>
    <array>
        <string>icon.png</string>
        <string>[email protected]</string>
    </array>

你可能感兴趣的:(app store)