I want to draw line on iPad using user points. How can I do that? Kindly reply if you know
Asked
Active
Viewed 2,809 times
0
-
type your title in a search engine...first hit is http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/CocoaDrawingGuide/Paths/Paths.html – Mitch Wheat Aug 02 '10 at 10:19
1 Answers
0
For simple 2D graphics you'll want to use Quartz 2D.
This Stackoverflow question has some good examples, and apple provide full documentation here
Also - see this very similar question: How do I draw a line on the iPhone? The accepted answer includes instructions and sample code.

Community
- 1
- 1

John Sibly
- 22,782
- 7
- 63
- 80
-
Using Quartz 2D we often draw paths to fixed points but what if we want to draw line where user drags on screen?? – Syed Moazam Ali Shah Aug 02 '10 at 10:33
-
1