前言
iOS10.3开放了一个新的API,就是更换APP的Icon图标。说明:使用下面的方法Xcode必须升级到最新的8.3.1。
函数方法
- (void)setAlternateIconName:(NSString *)alternateIconName completionHandler:(void (^)(NSError*error))completionHandler;
参数
alternateIconName
这个是替换图标的名称;
在Info.plist文件里面添加一个CFBundleAlternateIcons
字段,如果你想显示应用的主图标,则设置字段的值为nil,键的主键是plist里面的CFBundleIcons
字段。
completionHandler
当你执行修改图标的操作后,系统通过这个block
来告知结果。
error
在成功时,此参数的值为零。如果出现错误,该参数包含指示所发生的事的alternateiconname
属性的值保持不变的错误对象。
说明 使用此方法将应用程序的图标更改为其主图标或其替换图标之一。你可以仅在supportsalternateicons
属性的值是可以改变图标。
你必须声明你的应用程序的主要和关键的cfbundleicons
交替使用你的应用程序的Info.plist
文件图标。
有关如何配置你的应用程序替代图标,看到关键信息属性列表的关键参考cfbundleicons
描述。
更多参考官方文档:https://developer.apple.com/reference/uikit/uiapplication/2806818-setalternateiconname?language=objc
步骤:
需要的代码
<key>CFBundleIcons</key>
<dict>
<key>CFBundleAlternateIcons</key>
<dict>
<key>ThirdIcon</key>
<dict>
<key>UIPrerenderedIcon</key>
<true/>
<key>CFBundleIconFiles</key>
<array>
<string>Third</string>
</array>
</dict>
<key>SecondIcon</key>
<dict>
<key>UIPrerenderedIcon</key>
<true/>
<key>CFBundleIconFiles</key>
<array>
<string>Second</string>
</array>
</dict>
<key>FristIcon</key>
<dict>
<key>UIPrerenderedIcon</key>
<true/>
<key>CFBundleIconFiles</key>
<array>
<string>Frist</string>
</array>
</dict>
</dict>
<key>CFBundlePrimaryIcon</key>
<dict>
<key>CFBundleIconFiles</key>
<array>
<string></string>
</array>
</dict>
</dict>
- (IBAction)changeFirst:(id)sender {
[self changeIconWithString:@"FristIcon"];
}
- (IBAction)changeSecond:(id)sender {
[self changeIconWithString:@"SecondIcon"];
}
- (IBAction)changeThird:(id)sender {
[self changeIconWithString:@"ThirdIcon"];
}
- (void)changeIconWithString:(NSString *)string
{
//当前设备的系统版本。这里的所有api都是10.3才能使用的
if ([UIApplication sharedApplication].supportsAlternateIcons) {
NSLog(@"可以更换APPicon");
}else{
NSLog(@"不可以更换APPicon");
return;
}
NSString *iconName = [[UIApplication sharedApplication] alternateIconName];
[[UIApplication sharedApplication] setAlternateIconName:string completionHandler:^(NSError * _Nullable error) {
if (error) {
NSLog(@"error == %@",error);
}
NSLog(@"iconName == %@",iconName);
}];
}