I\'m trying to render some UIImages into 1 single image that I can save in my photo album. But it seems to as if the layer.renderInContext doesn\'t take a layermask into acc
The documentation for renderInContext: that, among other properties, mask is not supported on Mac OS X 10.5. I suspect it is the same on iOS, even if the documentation doesn't say so.
To solve your problem, you'll probably have to draw the layers separately into a graphics context, setting the correct mask on the graphics context itself.