码迷,mamicode.com
首页 > 移动开发 > 详细

ios基础开发 搜索功能总结

时间:2015-10-21 12:47:49      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:

搜素总结

1、加的是searchDisplayController

2、两个代理  UISearchBarDelegate,UISearchDisplayDelegate 并设置

3、连线 searchDisplay和searchBar

4、将 self.tableView.tableHeaderView=self.searchBar 固定住

5、搜索时调用的方法

#pragma mark 搜索方法
-(BOOL)searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchString:(NSString *)searchString{
    NSPredicate * query=[NSPredicate predicateWithFormat:@"SELF.name contains[c]%@",searchString];
    self.searchResult=[self.contacts filteredArrayUsingPredicate:query]; 
    return YES;
}




6、搜索的时候会显示自己的tableView  确定是不是searchDisplay.searchResultsTableView

7、修改tableView  count

8、跳转判断 查看联系人 


参考资料http://www.cnblogs.com/lesliefang/p/3929677.html

ios基础开发 搜索功能总结

标签:

原文地址:http://my.oschina.net/u/554046/blog/519762

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!