搜索NSTextField的建议

时间:2011-02-07 20:43:50

标签: objective-c xcode nstextfield

我有兴趣为NSTextField做一个“Google搜索建议”。我没有找到如何实现这个的enywhere。任何帮助,将不胜感激。

1 个答案:

答案 0 :(得分:2)

查看NSTextControlTextEditingDelegate方法以进行自动完成。 Here is an example适用于NSTextView,可轻松进行调整。关键方法是:

- (NSArray *)control:(NSControl *)control textView:(NSTextView *)textView completions:(NSArray *)words forPartialWordRange:(NSRange)charRange indexOfSelectedItem:(NSInteger *)index