insert rows in uitableview and update view immediately
I would like to imp开发者_C百科lement a search facility in my iPhone application. The functionality is similar to iBooks search where the results are updated row by row and become visible. Also one row is used to view the search progress.
Any help is appreciated.
Take a look at UISearchDisplayController. It is used together with a UITableView to provide search. You can probably get started by looking here or just google with your favorite search engine for UISearchDisplayController.
You have to use a background thread to update the table periodically.
精彩评论