RE: NSTextField controlTextDidEndEditing

2010-03-05 Thread Ulai Beekam
Sweet, thanks! I didn't even know of NSTextMovement, but doing a search for in Spotlight, I saw that it was indeed buried somewhere in the Event Handling Guide :) So anyway, this is how I'm doing it now, and so far it seems to be working well: - (void)controlTextDidEndEditing:(NSNotification *

Re: NSTextField controlTextDidEndEditing

2010-03-05 Thread Mike Abdullah
On 6 Mar 2010, at 01:00, Ulai Beekam wrote: > > I have a delegate of NSTextField that uses the controlTextDidEndEditing: > method to do some stuff when the editing has finished. > > However, there are (as far as I can imagine) two types of possible scenarios > under which the editing finishes