Possible Duplicate:
How to detect a pause in input for UISearchBar/UITextField?
I have a UISearchDisplayController. Currently I am sending a string to my webserver and it returns back with an array of results. I want to be able to "search as I type".
What is the recommended way of doing this? Should I hit the server character by character and return results? That seems expensive.
EDIT:
Each character returns a full set of results. Not just a single result.