UISearchBar和UISearchDisplayController配合使用,是iOS8之前的使用方法,iOS8以后使用UISearchController,更方便簡單。
遵守協議<UISearchControllerDelegate, UISearchBarDelegate, UISearchResultsUpdating>
@property(nonatomic,strong)UISearchController *searchController;
@property(nonatomic,strong)UITableView *searchResultTableView;
@property(nonatomic,strong)NSMutableArray *searchResultArray;
初始化控件searchController
- (UISearchController*)searchController {
if(!_searchController) {
_searchController= [[UISearchController alloc]initWithSearchResultsController:nil];
_searchController.searchResultsUpdater=self;
_searchController.searchBar.delegate=self;
_searchController.delegate=self;
_searchController.dimsBackgroundDuringPresentation=NO;//開始搜索時背景不顯示
_searchController.hidesNavigationBarDuringPresentation=YES;//搜索時隱藏NavigationBar
//searchBar樣式調整
_searchController.searchBar.tintColor= [YFRKitUtility colorFromHexString:@"0x3f75ff"];//設置searchBar按鈕字體顏色
_searchController.searchBar.barTintColor= [YFRKitUtility colorFromHexString:@"0xEDEDF3"];//設置searchBar前景色
_searchController.searchBar.layer.borderColor= [YFRKitUtility colorFromHexString:@"0xEDEDF3"].CGColor;//searchBar邊線顏色(為了掩藏黑線)
_searchController.searchBar.layer.borderWidth=0.5;
[_searchController.searchBar sizeToFit];
[_searchController.view addSubview:self.searchResultTableView];//把結果列表加在searchController的view上
self.definesPresentationContext=YES;//fix 顯示問題
}
return_searchController;
}
初始化結果列表,添加在searchController的view上
- (UITableView*)searchResultTableView {
if(!_searchResultTableView) {
CGFloat width =_searchController.view.width;
CGFloat height =_searchController.view.height;
_searchResultTableView= [[UITableView alloc]initWithFrame:CGRectMake(0,64, width, height)style:UITableViewStylePlain];
_searchResultTableView.backgroundColor= [YFRKitUtility colorFromHexString:@"0xEDEDF3"];
_searchResultTableView.separatorStyle=UITableViewCellSeparatorStyleSingleLine;
_searchResultTableView.dataSource=self;
_searchResultTableView.delegate=self;
_searchResultTableView.tableFooterView= [UIView new];//無數據時不顯示表格
}
return_searchResultTableView;
}
viewDidLoad代碼
- (void)viewDidLoad {
[super viewDidLoad];
self.navigationController.navigationBar.translucent=NO;//根據需要調整navigationBar
self.searchResultArray= [NSMutableArray array];//初始化數組
self.tableView.tableHeaderView=self.searchController.searchBar;//設置searchBar位置(self.tableView自行初始化)
self.edgesForExtendedLayout=UIRectEdgeNone;//解決跳轉頁面,返回后edgeInsets出錯問題
}
viewWillDisappear代碼
- (void)viewWillDisappear:(BOOL)animated {
[superviewWillDisappear:animated];
//頁面跳轉時根據需求設置active,不設置時可能需解決edgeInsets問題
if(_searchController.isActive) {
_searchController.active=NO;
[self.searchResultArray removeAllObjects];
if(_searchResultTableView) {[_searchResultTableView reloadData];}
}
}
UISearchViewController的代理回調
#pragma mark - UISearchResultsUpdating Delegate
//此方法只要searchBar有變化就會回調,包括剛開始(active)和結束(cancel),所以需在搜索執行方法中加非空判斷,或者使用其他回調方法
- (void)updateSearchResultsForSearchController:(UISearchController*)searchController {
DebugLog(@"updateSearchResultsForSearchController:%@", searchController.searchBar.text);
[self searchDataWithKeyword:searchController.searchBar.text];
}
#pragma mark - UISearchBar Delegate
文本變化回調
- (void)searchBar:(UISearchBar*)searchBar textDidChange:(NSString*)searchText {
DebugLog(@"textDidChange:%@", searchText);
[self searchDataWithKeyword:searchText];
}
點擊搜索按鈕的回調
- (void)searchBarSearchButtonClicked:(UISearchBar*)searchBar {
DebugLog(@"searchBarSearchButtonClicked:%@", searchBar.text);
[self searchDataWithKeyword:searchBar.text];
}
點擊取消的回調
- (void)searchBarCancelButtonClicked:(UISearchBar*)searchBar {
[self.searchResultArray removeAllObjects];
if(_searchResultTableView) {
[_searchResultTableView reloadData];
}}
搜索數據的方法
- (void)searchDataWithKeyword:(NSString*)keyword {
[self.searchResultArray removeAllObjects];//清空之前的數據
//網絡請求或本地搜索
{//self.searchResultArray賦值并更新結果列表
[_searchResultTableView reloadData];
}}
解決tableView下拉刷新沖突
#pragma mark UIScrollViewDelegate
- (void)scrollViewDidScroll:(UIScrollView*)scrollView {
if(_searchController.isActive) {
return;}
...//下拉刷新代碼
}
Tableview的回調:區分原始tableview和resultTableview
#pragma mark -- UITableViewDelegate
-(NSInteger)tableView:(UITableView*)tableView numberOfRowsInSection:(NSInteger)section{
if(_searchController.isActive) {//搜索結果
return [self.resultArray count];
}else{//原始tableview
return [self.dataSource count];
}}
- (CGFloat)tableView:(UITableView*)tableView heightForRowAtIndexPath:(NSIndexPath*)indexPath {
if(_searchController.isActive) {//搜索結果
return 44;
}else{//原始tableview
return 60;
}}
-(UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath{
staticNSString*identifier =@"";
UITableViewCell*cell = [tableView dequeueReusableCellWithIdentifier:identifier];
if(!cell) {
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
}
if(_searchController.isActive) {//搜索結果
}else{//原始tableview}
returncell;}
-(void)tableView:(UITableView*)tableView didSelectRowAtIndexPath:(NSIndexPath*)indexPath{
[tableView deselectRowAtIndexPath:indexPath animated:YES];
if(_searchController.isActive) {//搜索結果
}else{//原始tableview
}}