产生纯色图像
UIGraphicsBeginImageContextWithOptions(imagBounds.size, NO, 0);
[color setFill];
UIRectFill(imagBounds);
UIImage *img = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return img;
下起雨,也要勇敢前行