美文网首页
imageWithColor

imageWithColor

作者: 863cda997e42 | 来源:发表于2017-12-25 10:52 被阅读353次
    
    @interface UIImage (Util)
    // 颜色转换成UIImage类型.
    + (UIImage *)imageWithColor:(UIColor *)color;
    
    @end
    
    
    #import "UIImage+Util.h"
    
    @implementation UIImage (Util)
    
    + (UIImage *)imageWithColor:(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;
    }
    
    @end
    
    

    相关文章

      网友评论

          本文标题:imageWithColor

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