Is there a way to increase the frequency calls of touchesMoved than the default? I need more calls of it to draw a smooth circle. It gets called not too frequent by default and so I get an edgy circle. Is there a way to tweek the frequency of touchesMoved calls?

Thanks

link|improve this question

58% accept rate
Why not interpolate between the given points using a spline or similar curve? – pau.estalella Apr 23 '10 at 22:43
Can you please point me to some sample code for this? I think this is what I need. – Erika Apr 23 '10 at 23:10
yes, this is what I need! I did some googling. But can't find sample code, would appreciate it if you point me to one, preferably for the iPhone sdk – Erika Apr 23 '10 at 23:14
feedback

1 Answer

up vote 1 down vote accepted

I think this is what you are looking for:

UIBezierPath

It comes with code examples, etc.

link|improve this answer
1  
iPhoneOS doesn't have NSBezierPath. (It has UIBezierPath but only since 3.2) – KennyTM Apr 24 '10 at 12:27
ouch, that's true. editing the answer. – pau.estalella Apr 24 '10 at 13:38
This will work for me, I am doing development for the iPad. Thanks – Erika Apr 25 '10 at 4:45
feedback

Your Answer

 
or
required, but never shown

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