开发者

How to implement the spotlight search inside application for iphone /ipad development

开发者 https://www.devze.com 2023-03-09 17:55 出处:网络
Can any one get me idea in implementing the spotlig开发者_如何学Cht search inside application for iphone /ipad development?You should store all the search items in an array. When the user start search

Can any one get me idea in implementing the spotlig开发者_如何学Cht search inside application for iphone /ipad development?


You should store all the search items in an array. When the user start searching(use UISearchBar), code in the following delegate

- (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText
{
     //Find all the value matches your searchText
     //Display them in a tableView.
}
0

精彩评论

暂无评论...
验证码 换一张
取 消