I have a custom table view cell that is intended to draw a circle like the iPhone’s Mail.app does:
Instead, it draws like this:
Here’s my code:
CGContextRef context = UIGraphicsGetCurrentContext();
UIColor *grayColor = [UIColor grayColor];
[grayColor set];
CGContextStrokeEllipseInRect(context, CGRectMake(9, 10, 23, 23));
How can I make it not suck? :)
Edit: Ignore the fact that I omitted the code that draws the white background color.
What about it sucks? It doesn’t look close to, if not exactly like, the circle from Mail.