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

I am using CoreGraphics to implement free hand drawing which is working fine for me and now I want to implement Undo feature for this drawing so that user can clear his last strok

share|improve this question

3 Answers

up vote 6 down vote accepted

In your method:

-(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {

    if(imageView2.image != nil){
        [pathArray addObject:imageView2.image];
    }

}

And on undo button:

if([pathArray count]>0)
{
    [pathArray removeLastObject];
    if([pathArray count]==0)
    {
        imageView2.image = GlobalImage2;
    }
    else
    {
        imageView2.image=[pathArray objectAtIndex:[pathArray count]-1];
    }

}

Retrive this image from array. I have used same code in my few apps. I hope it'll be useful for you.

Thanks,

Hemang.

share|improve this answer
1  
tahnx for help its working for me – virantporwal Jan 16 at 13:25

You should read about the Memento Pattern. Some links:

In time, sorry for not explaining it here. But there are tons of books and articles about it.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.