首页 > 代码库 > IOS 创建一张有颜色的UIImage
IOS 创建一张有颜色的UIImage
#import <UIKit/UIKit.h>@interface UIImage (ImageWithColor)+ (UIImage *)imageWithColor:(UIColor *)color;@end#import "UIImage+ImageWithColor.h"@implementation UIImage (ImageWithColor)+ (UIImage *)imageWithColor:(UIColor *)color{ CGRect rect = CGRectMake(0, 0, 1, 1); UIGraphicsBeginImageContext(rect.size); CGContextRef context = UIGraphicsGetCurrentContext(); CGContextSetFillColorWithColor(context, [color CGColor]); CGContextFillRect(context, rect); UIImage *image = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext(); return image;}@end// 使用
UIColor *purpleColor = [UIColor colorWithRed:.927f green:.264f blue:.03f alpha:1];
UIImage *image = [UIImage imageWithColor:purpleColor];
IOS 创建一张有颜色的UIImage
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。