I have created UIView subclass which contains two concentric circles. I have fill the gap between them with some color. My code looks like following:
CGContextRef ctx = UIGraphicsGetCurrentContext();
CGContextAddEllipseInRect(ctx, rect);
CGContextAddEllipseInRect(ctx, CGRectMake(rect.origin.x + self.thick,
rect.origin.y + self.thick,
rect.size.width - 2 * self.thick,
rect.size.height - 2 * self.thick));
[self.fillColor set]; // Fill color is color value
CGContextEOFillPath(ctx);
This does fill the gap with one color, I was wondering if I can fill the gap using two different colors ? For example half of gap is filled with white color and other with gray.
The quick way would be to fill the circle's twice, clipping the region the second time.
You could do this with fewer draw calls if you are worried about performance.