I am having trouble directing the undos from a UITextView
to the UIDocument
's undo manager.
As I understand it when a user types in the UITextView
it should register the undo with the closest undoManager in the responder chain, however I have added overrides to the undoManager methods in the text view itself, the containing view, view controller and window that log and return the superclass result, and I placed breakpoints in these overrides, but they are never called and they never log.
Nevertheless, all changes made in this text editor are infact undoable, so they must be stored in an undo manager somewhere. How does UITextView
find it's undo manager? and how can I make sure it is pointed at my document so that the saved changes works as they should?