美文网首页
iOS更换app icon配置

iOS更换app icon配置

作者: _沒看懂 | 来源:发表于2019-01-29 16:26 被阅读0次
更换logo info plist 文件配置
<key>CFBundleIcons</key>
    <dict>
        <key>CFBundleAlternateIcons</key>
        <dict>
            <key>newYear</key>
            <dict>
                <key>CFBundleIconFiles</key>
                <array>
                    <string>newYear</string>
                </array>
                <key>UIPrerenderedIcon</key>
                <false/>
            </dict>
        </dict>
        <key>CFBundlePrimaryIcon</key>
        <dict>
            <key>CFBundleIconFiles</key>
            <array>
                <string></string>
            </array>
            <key>UIPrerenderedIcon</key>
            <false/>
        </dict>
    </dict>

相关文章

网友评论

      本文标题:iOS更换app icon配置

      本文链接:https://www.haomeiwen.com/subject/blixsqtx.html