我正在创建一个这样的彩色图像:
CGRect rect = CGRectMake(0, 0, 1, 1);
UIGraphicsBeginImageContext(rect.size);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetFillColorWithColor(context,
[[UIColor redColor] CGColor]);
// [[UIColor colorWithRed:222./255 green:227./255 blue: 229./255 alpha:1] CGColor]) ;
CGContextFillRect(context, rect);
UIImage *img = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
然后将其用作按钮的背景图片:
[resultButton setBackgroundImage:img forState:UIControlStateNormal];
使用redColor可以很好地工作,但是我想使用RGB颜色(如注释行所示)。当我使用RGB颜色时,按钮背景不会改变。
我错过了什么?
答案 0 :(得分:131)
我在UIButton周围创建了一个类别,可以设置按钮的背景颜色并设置状态。您可能会觉得这很有用。
@implementation UIButton (ButtonMagic)
- (void)setBackgroundColor:(UIColor *)backgroundColor forState:(UIControlState)state {
[self setBackgroundImage:[UIButton imageFromColor:backgroundColor] forState:state];
}
+ (UIImage *)imageFromColor:(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;
}
这将是我本月开放采购的一组帮助类别的一部分。
Swift 2.2
extension UIImage {
static func fromColor(color: UIColor) -> UIImage {
let rect = CGRect(x: 0, y: 0, width: 1, height: 1)
UIGraphicsBeginImageContext(rect.size)
let context = UIGraphicsGetCurrentContext()
CGContextSetFillColorWithColor(context, color.CGColor)
CGContextFillRect(context, rect)
let img = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()
return img
}
}
Swift 3.0
extension UIImage {
static func from(color: UIColor) -> UIImage {
let rect = CGRect(x: 0, y: 0, width: 1, height: 1)
UIGraphicsBeginImageContext(rect.size)
let context = UIGraphicsGetCurrentContext()
context!.setFillColor(color.cgColor)
context!.fill(rect)
let img = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()
return img!
}
}
用作
let img = UIImage.from(color: .black)
答案 1 :(得分:11)
Xamarin.iOS解决方案
public UIImage CreateImageFromColor()
{
var imageSize = new CGSize(30, 30);
var imageSizeRectF = new CGRect(0, 0, 30, 30);
UIGraphics.BeginImageContextWithOptions(imageSize, false, 0);
var context = UIGraphics.GetCurrentContext();
var red = new CGColor(255, 0, 0);
context.SetFillColor(red);
context.FillRect(imageSizeRectF);
var image = UIGraphics.GetImageFromCurrentImageContext();
UIGraphics.EndImageContext();
return image;
}
答案 2 :(得分:5)
你在使用ARC吗?这里的问题是您没有引用您尝试应用的UIColor
对象; CGColor
支持UIColor
,但ARC会在您有机会使用UIColor
之前取消分配CGColor
。
最明确的解决方案是让局部变量指向具有UIColor
属性的objc_precise_lifetime
。
您可以在this article about UIColor and short ARC lifetimes上详细了解这个确切的案例,或者详细了解the objc_precise_lifetime
attribute。
答案 3 :(得分:4)
将点添加到所有值:
[[UIColor colorWithRed:222./255. green:227./255. blue: 229./255. alpha:1] CGColor]) ;
否则,您将浮点数除以int。
答案 4 :(得分:3)
我认为227./255中的255被视为整数,并且除以总是返回0
答案 5 :(得分:3)
您的代码运行正常。您可以使用Iconfactory's xScope验证RGB颜色。只需将其与[UIColor whiteColor]
进行比较。
答案 6 :(得分:3)
CGContextSetFillColorWithColor(context,[[UIColor colorWithRed:(255/255.f) green:(0/255.f) blue: (0/255.f) alpha:1] CGColor]);