专栏名称: Adrenine
iOS开发
目录
相关文章推荐
哈尔滨日报  ·  上午10点发通知,要求下午3点前报送相关数据 ... ·  18 小时前  
龙江市场监管  ·  坚决整治违规吃喝|“捂盖子”不如积极“挑担子” ·  22 小时前  
51好读  ›  专栏  ›  Adrenine

iOS笔记之UIImage与UIColor之间的转换

Adrenine  · 掘金  ·  · 2017-12-13 08:46

正文

请到「今天看啥」查看全文


//UIColor 转UIImage(UIImage+YYAdd.m也是这种实现)
- (UIImage*) createImageWithColor: (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 *theImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    return theImage;
}
//UIImage转UIColor
[UIColor colorWithPatternImage:[UIImageimageNamed:@"image.png"]];






请到「今天看啥」查看全文