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.