CBAutocompleteTextField
サブクラスNSTextField
を作成し、メソッドをオーバーライドしました:
- (void)textDidChange:(NSNotification *)aNotification
{
[self complete:nil];
[super textDidChange:aNotification];
}
警告は表示されませんが、実行時エラーが発生します。
[CBAutocompleteTextField complete:]: unrecognized selector sent to instance 0xca19a50
なんで?そのようなメソッドを提供するNSTextField
サブクラスです。NSResponder
確かに、私は警告を受けません。
ありがとう