美文网首页
修改icon颜色

修改icon颜色

作者: CY水漆 | 来源:发表于2023-12-25 15:00 被阅读0次

    - (UIImage*)imageWithImageName:(NSString*)nameimageColor:(UIColor*)imageColor {

        UIImage *image = [UIImage imageNamed:name];

        UIGraphicsBeginImageContextWithOptions(image.size, NO, 0.0f);

        [imageColorsetFill];

        CGRectbounds =CGRectMake(0,0, image.size.width, image.size.height);

        UIRectFill(bounds);

        [imagedrawInRect:bounds blendMode:kCGBlendModeDestinationIn alpha:1.0f];

        UIImage *tintedImage = UIGraphicsGetImageFromCurrentImageContext();

        UIGraphicsEndImageContext();

         returntintedImage;

    }

    对单色icon,及背景为透明起作用

    相关文章

      网友评论

          本文标题:修改icon颜色

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