I'm attempting to add a black overlay over some current UIImage's (which are white). I've been trying to use:
[[UIColor blackColor] set]; [image drawAtPoint:CGPointMake(0, 0) blendMode:kCGBlendModeOverlay alpha:1.0];
But it's not working, and I'm pretty sure set isn't supposed to be there.