I'm trying to build this: enter image description here

Where the white background is in fact transparent. I know how to clip a CGPath to a set region, but this seems to be to other way around, since I need to substract regions from a filled CGPath.

I guess the right way to go would be to substract the whole outer-circles from the CGPath and then to draw smaller circles at my CGPoints, but I'm not sure how to execute the former. Can anyone point me in the right direction?

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

That's what I would do :

1) Draw you general line

2) CGContextSetBlendMode(context, kCGBlendModeClear) to "clear the context" when you draw.

3) Draw you bigger circles

4) CGContextSetBlendMode(context, kCGBlendModeNormal) to return to normal drawing

5) Draw your little circles.

link|improve this answer
+1 for providing actual code – samvermette Feb 20 '11 at 20:30
Finally got the time to try this out. Worked instantly! Thanks! – samvermette Feb 25 '11 at 22:08
feedback

You could instead start a transparency layer, draw the lines, then draw the larger transparent circles using the clear color, then draw the smaller black circles. Then when you finish the transparency layer, it will composite exactly what you want back onto the context.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.