Courtesy of Jens Bauer. Sometimes you'd like a text field to notify on every text change.@interface FSContinousTextField : NSTextField @end @implementation FSContinousTextField - (void) textDidChange: (NSNotification *) aNotification { [[self target] performSelector:[self action] withObject:self]; } @end