ios根据颜色返回图片

+(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;

}
上一篇:Keil C51中函数指针的使用


下一篇:(转)jQuery Mobile 移动开发中的日期插件Mobiscroll 2.3 使用说明