[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
NSComboBox delegate
From: |
Andreas Höschler |
Subject: |
NSComboBox delegate |
Date: |
Wed, 1 Feb 2006 19:10:29 +0100 |
Hi all,
I want to be notified when I leave a combobox with tab after entering a
few charatcers. setCompletes is set to YES. I implemented
- (void)comboBoxWillDismiss:(NSNotification *)notification
{
NSLog(@"comboBoxWillDismiss");
}
- (void)textDidEndEditing:(NSNotification *)aNotification
{
NSLog(@"textDidEndEditing");
}
- (void)textDidChange:(NSNotification *)aNotification
{
NSLog(@"textDidChange");
}
in the delegate but none of these is ever called. Any ideas?
Regards,
Andreas
- NSComboBox delegate,
Andreas Höschler <=