I want something as follows
UIImage *solid = [UIImage imageWithColor:[UIColor darkGrayColor]];
to create an image with respect to some color.
how to do it in iPhone sdk.
|
|
|
You can draw the color into a CGContext and then capture an image from it:
|
|||||
|
|
If you're just trying to create a solid rectangle of colour why not just do something like
And then add the view to whatever subview you want to show the solid colour. (That is, of course only if that's what you're trying to achieve. Maybe you aren't) |
|||
|
|