美文网首页
iOS动态替换应用图标

iOS动态替换应用图标

作者: 张聪_2048 | 来源:发表于2020-12-21 15:46 被阅读0次

前言

开发过程需要打测试环境的包给测试使用,之前是用不同的target做区分的,但是这种方式切换环境时还需要重新安装包,十分的不方便。于是老板要求使用同意一个包,动态切换环境,为了区分不同环境的包,最好改变一下App图标,方便测试区分,于是就研究了一下动态切换icon的方法。

Demo下载:https://github.com/ZhangJingHao/ZJHChangeIconDemo.git

一、基础使用

1、API方法介绍

在iOS 10.3之后,苹果官方提供了相关的API来实现这个功能,主要是下面这几个方法:

@interface UIApplication (UIAlternateApplicationIcons)

// 如果为false,当前进程不支持备用图标。
@property (readonly, nonatomic) BOOL supportsAlternateIcons;

// 传递' nil '来使用主应用程序图标。完成处理程序将在任意后台队列上异步调用;在执行任何进一步的UI工作之前,请确保分派回主队列
- (void)setAlternateIconName:(nullable NSString *)alternateIconName completionHandler:(nullable void (^)(NSError *_Nullable error))completionHandler;

// 如果为“nil”,表示正在使用主应用程序图标。
@property (nullable, readonly, nonatomic) NSString *alternateIconName;

@end

一共就三个方法,简单明了。第一个判断系统是否支持,第二个更改图标,第三个获取正在使用的图标名称。因更改的是外部系统调用的图标,所以还需要把图标资源事先配置好,是不能随意修改的。

2、配置文件(Info.plist)

配置文件(Info.plist).png

1)把图icon片添加到项目中,动态修改的icon不能放在Assets.xcassets里,正常的主icon还是可以放在这里设置的。
2)在Info.plist中添加Icon file (iOS 5)一列。
3)在Icon file (iOS 5)内添加一个Key:CFBundleAlternateIcons,类型为字典,在这个字典里配置我们所有需要动态修改的icon:键为icon的名称,值为一个字典。如“DEV”、“PRO”
4)这个字典里包含两个键:CFBundleIconFiles,其值类型为Array,内容为icon的名称,如“DEVIcon20x20”,这里可以填多个,支持不同图片格式。

  1. UIPrerenderedIcon的value是BOOL值。这个键值所代表的作用在iOS7之后(含iOS7)已失效,在iOS6中可渲染app图标为带高亮效果。所以这个值目前我们可以不用关心。
    6)系统会将Assets.xcassets中配置的AppIcon转化为Info.plist中的CFBundlePrimaryIcon。所以我们主图标的配置方式还是与原先一样。从编译后的工程中查看info.plist文件,可以看到如下:
主图标的配置方式.png

3、代码实现

/// 切换系统icon
- (void)changeIcon:(UIButton *)btn {
   
    if (@available(iOS 10.3, *)) {
        // 判断系统是否支持
        if (![[UIApplication sharedApplication] supportsAlternateIcons]) {
            return;
        }
    }
        
    if (@available(iOS 10.3, *)) {
        // 设备指定图片,iconName为info.plist中的key
        [[UIApplication sharedApplication] setAlternateIconName:@"PRO" completionHandler:^(NSError * error) {
            if (error) {
                NSLog(@"更换app图标发生错误了 : %@",error);
            }
        }];
    }
}

4、效果查看

图片分别是:弹框提示、app主屏幕、通知页、设置页面

切换效果.png

二、去除弹框

切换图标时,系统默认是要弹出提示框的,还需要用户手动点击“OK”,体验不是很好。所以需要想办法把弹框去掉。

弹框分析.png

可以看到,它是一个:UIAlertController,然后又包含了私有类:_UIAlternateApplicationIconsAlertContentViewController

既然知道了弹框是UIAlertController,那么我们自然而然想到,该弹框是由ViewController通过presentViewController:animated:completion:方法弹出。那么我们就可以通过Method swizzling hook该弹框,不让其进行弹出即可。注意:因hook的是系统方法,可能会引起其他问题,还是慎用吧。

@implementation UIViewController (CustomPresent)

+ (void)load {
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        Method presentM = class_getInstanceMethod(self.class, @selector(presentViewController:animated:completion:));
        Method presentSwizzlingM = class_getInstanceMethod(self.class, @selector(zjh_presentViewController:animated:completion:));
        method_exchangeImplementations(presentM, presentSwizzlingM);
    });
}

- (void)zjh_presentViewController:(UIViewController *)viewControllerToPresent
                         animated:(BOOL)flag
                       completion:(void (^)(void))completion {
    if ([viewControllerToPresent isKindOfClass:[UIAlertController class]]) {
        UIAlertController *alertController =
        (UIAlertController *)viewControllerToPresent;
        // 判断标题title、内容message是否为空
        if (alertController.title == nil && alertController.message == nil) {
            id conVC = [alertController valueForKey:@"_contentViewController"];
            if (conVC) {
                /* 判断_contentViewController的值是否为
                   _UIAlternateApplicationIconsAlertContentViewController */
                NSString *clsStr = NSStringFromClass([conVC class]);
                NSString *temStr = @"_UIAlternateApplicationIconsAlertContentViewController";
                if ([clsStr isEqualToString:temStr]) {
                    if (completion) {
                        completion();
                    }
                    return;
                }
            }
        } else {
            [self zjh_presentViewController:viewControllerToPresent
                                   animated:flag
                                 completion:completion];
            return;
        }
    }
    
    [self zjh_presentViewController:viewControllerToPresent
                           animated:flag
                         completion:completion];
}

三、图片自动添加水印

本想动态配置任意类型的图标的,但是好像无法实现。因为图片资源是打包放在ipa里的,安装到系统后,图片资源是没有权限动态替换的,除非是越狱手机。所以就无法更换了,只能事先集成的安装包里。于是就写了方法,自动添加水印。大致流程是:先读取添加三角形水印,然后再贴个文本,之后截图保存一下就可以了。核心代码如下,详情可参看demo

// 处理图片
- (void)dealIconWithImg:(UIImage *)img
               iconName:(NSString *)iconName
                  imgWH:(CGFloat)imgWH
                labText:(NSString *)labText {
    // 还原视图
    [self.iconView.subviews makeObjectsPerformSelector:@selector(removeFromSuperview)];
    [self.iconView.layer.sublayers makeObjectsPerformSelector:@selector(removeFromSuperlayer)];
    
    // 设置框的大小和图片大小一致
    self.iconView.frame = CGRectMake(50, 50, imgWH, imgWH);
    // 设置图片
    self.iconView.image = img;

    // 图片靠左还是靠右
    BOOL isLeft = NO;
    
    // 添加背景三角形
    CGFloat triangleH = self.iconView.frame.size.width * 0.4;
    [self addTriangleWithInView:self.iconView height:triangleH isLeft:isLeft];
    
    // 添加文字
    // 已知直角三角形两个直角边长度,求斜边长度
    CGFloat labW = hypot(triangleH, triangleH);
    CGFloat rate = 0.3; // 文字高度比例
    CGFloat labH = labW * rate;
    // 下面是一道数学,拿着纸笔算出来的方法
    CGFloat labX = -triangleH * 0.5 * (sqrt(2) - (1-rate));
    CGFloat labY = triangleH * 0.5 * ( (1-rate) - sqrt(2) * rate);
    if (!isLeft) {
        CGFloat cX = labX + 0.5 * labW;
        CGFloat cY = labY + 0.5 * labH;
        cX = self.iconView.frame.size.width - cX;
        labX = cX - 0.5 * labW;
        labY = cY - 0.5 * labH;
    }
    CGRect labF = CGRectMake(labX, labY, labW, labH);
    UILabel *lab = [[UILabel alloc] initWithFrame:labF];
    lab.text = labText;
    lab.textColor = [UIColor whiteColor];
    lab.textAlignment = NSTextAlignmentCenter;
    CGFloat fontSize = labH * 0.85; // 文字大小
    lab.font = [UIFont boldSystemFontOfSize:fontSize];
    if (isLeft) {
        lab.transform = CGAffineTransformMakeRotation(-M_PI/4);
    } else {
        lab.transform = CGAffineTransformMakeRotation(M_PI/4);
    }
    [self.iconView addSubview:lab];
    
    // view截图
    UIGraphicsBeginImageContextWithOptions(self.iconView.frame.size, NO, [UIScreen mainScreen].scale);
    [self.iconView.layer renderInContext:UIGraphicsGetCurrentContext()];
    UIImage *newImg = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    self.iconView.image = newImg;
    
    /// 图片存储在沙河目录
    NSData *imgData = UIImagePNGRepresentation(newImg);
    NSString *imgPath = [NSString stringWithFormat:@"%@/%@", self.imgFilePath, iconName];
    [imgData writeToFile:imgPath atomically:YES];
}



参考链接:
iOS动态更换App图标:http://daiyi.pro/2017/05/01/ChangeYourAppIcons1/

相关文章

网友评论

      本文标题:iOS动态替换应用图标

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