Joey Harter
Joey Harter

Reputation: 1

Drawing smoother circles using Core Graphics

I am creating an app where users draw on a custom view. I have the basic code done, yet when I draw a circle, the result is a weird 8+ sided polygon.

I have read into using Bezier paths (or something of that nature), yet everything I have seen with Bezier paths involve drawing a shape in code instead of user drawn.

Is there anything to help my messed up circles become smooth circles?

Any help is appreciated, and please specify in comments if you do not understand my situation!
Thanks!

Upvotes: 0

Views: 535

Answers (1)

justin
justin

Reputation: 104698

Have you tried CGContextAddEllipseInRect yet?

(what are you using now?)

Upvotes: 1

Related Questions