- (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;
}
相关文章
- 01-07把HTML转成PDF的4个方案及实现
- 01-07剑指offer 45 把数组排成最小的数-toString()方法-StringBuilder动态增加字符数组-重写Comparator方法
- 01-07.Net中把字符串(String)格式转换为DateTime类型的三种方法
- 01-07vuex中怎么把‘库’中的状态对象赋值给内部对象(三种方法)
- 01-07List转成字符串的五种方法
- 01-07如何将XPS转成PDF?XPS转PDF的免费方法
- 01-07解决Andriod软键盘出现把原来的布局给顶上去的方法(转)
- 01-07把Storyboard减轻的方法
- 01-07把blob对象(File的父类)转成url地址
- 01-07css中border(边框)与background-image(背景图片)与background-color(背景颜色)的覆盖关系