I currently have two UIViews: one of a red background and the other blue. The blue view is a subview of the red view. What I would like to do is be able to \"cut\" out rec
There is truth in all the other answers, but it is quite possible to draw with clear colour, or so to say erase the existing colours within any path, even with the -[UIBezierPath fill] or similar convenience methods. All you have to do is to set the context blend mode to an appropriate value depending on the effect you are trying to achieve, like so:
CGContextSetBlendMode(context, kCGBlendModeClear);
[[UIColor clearColor] set];
[myArbitraryPolygonPath fill];
There are around two dozen different options you could choose from, take a look around the CGContext reference.