美文网首页
动态更改APP 图标

动态更改APP 图标

作者: DDY | 来源:发表于2017-07-13 12:07 被阅读45次

iOS 10.3后开放

[[UIApplication sharedApplication] setAlternateIconName:nil completionHandler:^(  
  
 }];

plist

<key>CFBundleIcons</key>  
    <dict>  
        <key>CFBundleAlternateIcons</key>  
        <dict>  
            <key>newIcon</key>  
            <dict>  
                <key>CFBundleIconFiles</key>  
                <array>  
                    <string>newIcon</string>  
                </array>  
                <key>UIPrerenderedIcon</key>  
                <false/>  
            </dict>  
        </dict>  
        <key>CFBundlePrimaryIcon</key>  
        <dict>  
            <key>CFBundleIconFiles</key>  
            <array>  
                <string>Icon60X60</string>  
            </array>  
        </dict>  
    </dict>  

附加

相关文章

网友评论

      本文标题:动态更改APP 图标

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