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.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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
reloadDataof the table view and write some code that looks for new information in your Core Data table.That’s basically everything you need.