Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a Drawing App of sorts. I want to Implement Undo/Redo. Though I'm running into difficulty with storing the Original and New Values for the Undo/Redo.

With Gestures I need to store a Few things: transform, Center, for the Properties Dialog, I need to store many more, Color, Font, Font-Size, Outline, Outline Color, the Text It self, etc.

I've created a NSMutableDictionary of the Attributes that the user can change in a Single Gesture/Properties Popover.

I wanted to use Rob's Answer for NSUndoManager and Rotation Gesture though using his Solution works with CGAffineTransform, which when sent as a parameter for the prepareWithInvocationTarget, its not an object and just puts a copy of the CGAffineTransform struct on the Undo/Redo stack.

Though when using the prepareWithInvocationTarget with my NSMutableDictionary the Dictionaries I'm passing in (OriginalAttribs, newAttribs) are not retained. I cannot have them as local iVars as they will change with each action on a drawing object.

Seems like I want to use retainArguments as part of NSInvocation though I don't really want to retain them. I need a copy of them.

Its the Gestures that make this Difficult as I can't keep setting the OrigianlCenter, OriginalTransform as it changes while the gesture is active.

UPDATE I found this link and it seems to be similar to what I want to do.

I setup my NSUndoManager like this:

        //Needed to get access to UndoManager
    NSUndoManager * undoManager = [(IoScreenEditorViewController * )UIAppDelegate.ioMainViewController.currentViewController undoManager];

        //Need to Store our Center as a NSValue
    [undoManager prepareWithInvocationTarget:self];
    [undoManager forwardInvocation:anInvocation ];

I then get a runtime error:

 -[NSUndoManager undoAttributesWithOriginalAttributes:newAttributes:]: unrecognized selector sent to instance 0xeedcbd0

undoAttributesWithOriginalAttributes:newAttributes: is the selector that I setup for my NSInvocation Object. According to the Documentation here, it says that it should pass it along to self (the Target), not the undo manager self?

share|improve this question
Are you sure the object arguments aren't retained by the undo manager? They should be. – Nicolas Bachschmidt Mar 20 '12 at 22:37
I'm fairly sure. I was also going by @martinet 's answer here: link If its not a NSObject derived class and is a scalar-type, the value is just added to the stack since its not a reference. I have seen many where they are referencing an Autoreleased Object like: [[undomanager prepareWithInvocationTarget:self] set Text:[text capitalizedString]]; and seems to be working for them, though seems like what documentation I've read says it won't retain it unless you use the registerUndoWithTarget: method – scooter133 Mar 21 '12 at 0:21

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.