Re: [COCOA] notification of enter/focus event?

2009-12-12 Thread Matthew Lindfield Seager
On Saturday, December 12, 2009, Paxton Sanders paxton.sand...@mac.com wrote: I want to know when the user exits edit fields, so I can check values and provide immediate feedback.  I'm using  - (void)controlTextDidEndEditing:(NSNotification *)aNotification and it works. Also ( it may not be

[COCOA] notification of enter/focus event?

2009-12-11 Thread Paxton Sanders
Sorry if this is a bit too basic, but... I want to know when the user exits edit fields, so I can check values and provide immediate feedback. I'm using - (void)controlTextDidEndEditing:(NSNotification *)aNotification and it works. I also need to know when a user enters an edit field, so I

Re: [COCOA] notification of enter/focus event?

2009-12-11 Thread Henry McGilton (Boulevardier)
On Dec 11, 2009, at 10:23 AM, Paxton Sanders wrote: Sorry if this is a bit too basic, but... I want to know when the user exits edit fields, so I can check values and provide immediate feedback. I'm using - (void)controlTextDidEndEditing:(NSNotification *)aNotification and it works.