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?

link|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
feedback

2 Answers

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

link|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
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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