I 've created a custom UIView in which I can draw. My problem is that, when drawRect: is called, I need to re-draw everyhing that is already drawn, before redrawing because the control erases itself before calling drawRect (or so I think).
Is there a way around that? That is, to tell the UIView to "keep the existing drawing" and append the new one, instead of starting with an empty rect.
Edit: There is no way, so I have to save my previous drawing in an UIImage. But drawing that each time the touching is moved is very, very slow indeed. Any other options?
Thx.