摘要: - (UIImage *) createImageWithColor: (UIColor *) color{ CGRect rect = CGRectMake(0.0f,0.0f,1.0f,1.0f);  UIGraphicsBeginImageContext(rect.size); CGContextRef context =UIGraphicsGetCurrentContext(); CGContextSetFillColorWithColor(context, [colorCGColor]); CGContextFillRect(context, rect); UIImage *the 阅读全文
posted @ 2013-05-14 11:00 xiaoxiaoxigua 阅读(214) 评论(0) 推荐(0)