在项目中经常用到纯色的图片,这样不但会增加ipa包得大小,还会在运行时增加内存,其实用CG画的速度非常快,可以代替。
@int
- (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;
}