码迷,mamicode.com
首页 > 其他好文 > 详细

自定义UISearchDisplayController中搜索到结果的cell的位置

时间:2014-11-13 18:09:35      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   ar   sp   div   on   log   

#pragma mark - UISearchBarDelegate
//当搜索文本被改变的时候调用 - (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText {
  //改变searchController中tableView的位置 _searchController.searchResultsTableView.frame
= CGRectMake(kZero, _tableViewY, kScreenW, kScreenH - _tableViewY); [[RealtimeSearchUtil currentUtil] realtimeSearchWithSource:self.dataSource searchText:(NSString *)searchText collationStringSelector:@selector(chatter) resultBlock:^(NSArray *results) { if (results) { dispatch_async(dispatch_get_main_queue(), ^{ [self.searchController.resultsSource removeAllObjects]; [self.searchController.resultsSource addObjectsFromArray:results]; [self.searchController.searchResultsTableView reloadData]; }); } }]; }

 

自定义UISearchDisplayController中搜索到结果的cell的位置

标签:style   blog   io   color   ar   sp   div   on   log   

原文地址:http://www.cnblogs.com/hw140430/p/4095195.html

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