Reputation: 2413
Does iOS have a built-in or a ready made library for live search similar to what is popular in the web world (http://www.w3schools.com/php/php_ajax_livesearch.asp)?
I'd like to create something like that and hook it up to Core Data.
Upvotes: 1
Views: 800
Reputation: 29975
It's very easy to create a search bar (I believe it's UISearchBar) and put a table view below it (UITableView). Hook the "on change" event of the search bar to the reloadData
of the table view and write some code that looks for new information in your Core Data table.
That's basically everything you need.
Upvotes: 2