You will want to clip the context to an image mask and then fill with a solid color:
- (void)drawRect:(CGRect)rect
{
CGRect bounds = [self bounds];
[[UIColor blackColor] set];
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextClipToMask(context, bounds, [myImage CGImage]);
CGContextFillRect(context, bounds);
}
Note: myImage should be a UIImagean instance variable that was created contains an UIImage. I'm not sure whether it takes the mask from a greyscale PNG with no alpha-channelthe alpha channel or the intensity so try both.
