Search for offers for NSTextField

I'm interested in doing “Google search hints,” for example for NSTextField. I did not find how to implement this. Any help would be greatly appreciated.

+3
source share
1 answer

See the NSTextControlTextEditingDelegate autocomplete methods. Here is an example for an NSTextView that can be easily adapted. Key Method:

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

Source: https://habr.com/ru/post/1790548/


All Articles