Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm creating a colored image like this:

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

and then use it as the background image of a button:

[resultButton setBackgroundImage:img forState:UIControlStateNormal];

This works great using the redColor, however I want to use an RGB color (as shown in the commented line). When I use the RGB color, the buttons background isn't changed.

What am I missing?

share|improve this question
If you are just setting a background color for the button, why wouldnt you simply use the setBackgroundColor: method? – Chance Hudson Jun 27 '11 at 20:25
Setting the backgroundColor only changes the outside of the rounded corners, but not the actual area of the button itself. – Thorsten Jun 27 '11 at 20:38

5 Answers

Add the dots to all values:

[[UIColor colorWithRed:222./255. green:227./255. blue: 229./255. alpha:1] CGColor]) ;

Otherwise, you are dividing float by int.

share|improve this answer

Are you using ARC? The problem here is that you don't have a reference to the UIColor object that you're trying to apply; the CGColor is backed by that UIColor, but ARC will deallocate the UIColor before you have a chance to use the CGColor.

The clearest solution is to have a local variable pointing to your UIColor with the objc_precise_lifetime attribute.

You can read more about this exact case on this article about UIColor and short ARC lifetimes or get more details about the objc_precise_lifetime attribute.

share|improve this answer
A valid observation, but that would result in a crash, which it sounds like the OP hasn't observed. – Justin Spahr-Summers Jun 30 '12 at 0:51
Not necessarily; it depends on the details of how CGColor and CGContextFillRect interact, not to mention other details that might change from OS version to OS version. Certainly it could be something else, but since the code is broken as written (if ARC is being used) it's a first step at least. – Jesse Rusak Jun 30 '12 at 1:12
My code was from the pre-ARC days. – Thorsten Aug 15 '12 at 20:15

I suppose that 255 in 227./255 is perceived as an integer and divide is always return 0

share|improve this answer
Thanks for the idea (also suggested by someone who deleted his answer). The division works fine as it is, even when building the color from properly set floats (dummy vars declared and their value checked in the debugger), setting the background image does not do anything. – Thorsten Jun 27 '11 at 19:59

Your code works fine. You can verify the RGB colors with Iconfactory's xScope. Just compare it to [UIColor whiteColor].

share|improve this answer
CGContextSetFillColorWithColor(context,[[UIColor colorWithRed:(255/255.f) green:(0/255.f) blue: (0/255.f) alpha:1] CGColor]);
share|improve this answer
Not sure what you mean with your answer .. I was not trying to replace colorRed with RGB values, but use my own values instead - which doesn't seem to work. – Thorsten Aug 15 '12 at 20:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.