I have two sub views that I swap within a view:
NSTextView <=> NSOutlineView
An NSSegmentedControl serves to initiate the subview switching.
My NSTextView delegate responds to :
- (void)textDidEndEditing:(NSNotification *)aNotification
However, if I modify my NSTextView and then switch the views the
-textDidEndEditing: notification is not sent.
Presumably this should be sent when the NSTextView looses first responder status.