color转成image对象
阅读原文时间:2023年07月11日阅读:2

.h

//颜色转换成图片

  • (UIImage *)imageFromColor:(UIColor *)color;

.m

//颜色转换成图片

  • (UIImage *)imageFromColor:(UIColor *)color
    {
    CGRect rect = CGRectMake(0.0f, 0.0f, 1.0f, 1.0f);
    UIGraphicsBeginImageContext(rect.size);
    CGContextRef context = UIGraphicsGetCurrentContext();

    CGContextSetFillColorWithColor(context, [color CGColor]);
    CGContextFillRect(context, rect);

    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

    return image;
    }