I need to autocomplete the user's entries in an NSTextField and I use an NSArray to check if there is a match but the NSArray is about 100,000 objects so the matching takes a noticeable time.
The way I implemented this feature is more or less the same way like it's suggested here:
Autocomplete with twitter usernames in text field (cocoa)
Is there a way to make things faster? Does anyone know a better way?
Thanks a lot.