Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

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.