Tagged Questions
8
votes
8answers
1k views
How to design undo & redo in text editor?
Part of my project is write text editor that used for type some rule and my application compile and run it. Writing compiler was end and release beta version. In final version we must add undo and ...
6
votes
5answers
699 views
how to implement undo/redo operation without major changes in program
Hi
I'm about to add new functionality to application which I'm currently writting. I need to write a undo/redo fnctionality. However 90% of our application is ready and I don't know what is the best ...
2
votes
3answers
283 views
Clearing NSUndoManager's Redo stack
In my application, there are some actions I want to undo programmatically, without giving the user the option of clicking "Redo". Is there any way to clear the Redo stack of NSUndoManager? If not, and ...
1
vote
3answers
617 views
NSUndoManager with Core Data - Redo not working
I have a Core Data document-based app which support undo/redo via the built-in NSUndoManager associated with the NSManagedObjectContext. I have a few actions set up which perform numerous tasks within ...
0
votes
1answer
338 views
What is the use of undo manager? How to use it?
What is the need of undo manager in iphone? I never see such buttons in sample programs. I know the meaning and the use of undo & redo. But my question here is, For which purpose, i need it? How ...