Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am working on an iPhone drawing app and I am new to Quartz2D. Can you guys please help me to preserve the drawn object in the view. When I draw a free path as below code I can draw paths as much as I want, and the previously drawn paths will be in the view.

CGPathMoveToPoint(path, NULL, self.origin.x, self.origin.y);
CGPathAddLineToPoint(path, NULL, self.endpoint.x, self.endpoint.y);
CGContextAddPath(context, path);
CGContextStrokePath(context);

but If I try to draw a straight line as follows, the previously drawn line will disappear from the view.

CGContextMoveToPoint(context, self.origin.x, self.origin.y);
CGContextAddLineToPoint(context, self.endpoint.x, self.endpoint.y);
CGContextStrokePath(context);

The lines are drawn as user touch the screen. What I am doing wrong? please help me to understand the problem. Thanks.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.