CBAutocompleteTextField
子类NSTextField
并重写方法:
- (void)textDidChange:(NSNotification *)aNotification
{
[self complete:nil];
[super textDidChange:aNotification];
}
我没有收到任何警告,但是我收到了运行时错误:
[CBAutocompleteTextField complete:]: unrecognized selector sent to instance 0xca19a50
为什么?NSTextField
是NSResponder
提供这种方法的子类。事实上,我没有收到警告。
谢谢