UISearchBarController 使用筆記

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

}}

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯系作者
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發布,文章內容僅代表作者本人觀點,簡書系信息發布平臺,僅提供信息存儲服務。
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市,隨后出現的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖,帶你破解...
    沈念sama閱讀 227,967評論 6 531
  • 序言:濱河連續發生了三起死亡事件,死亡現場離奇詭異,居然都是意外死亡,警方通過查閱死者的電腦和手機,發現死者居然都...
    沈念sama閱讀 98,273評論 3 415
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人,你說我怎么就攤上這事。” “怎么了?”我有些...
    開封第一講書人閱讀 175,870評論 0 373
  • 文/不壞的土叔 我叫張陵,是天一觀的道長。 經常有香客問我,道長,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 62,742評論 1 309
  • 正文 為了忘掉前任,我火速辦了婚禮,結果婚禮上,老公的妹妹穿的比我還像新娘。我一直安慰自己,他們只是感情好,可當我...
    茶點故事閱讀 71,527評論 6 407
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著,像睡著了一般。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發上,一...
    開封第一講書人閱讀 55,010評論 1 322
  • 那天,我揣著相機與錄音,去河邊找鬼。 笑死,一個胖子當著我的面吹牛,可吹牛的內容都是我干的。 我是一名探鬼主播,決...
    沈念sama閱讀 43,108評論 3 440
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了?” 一聲冷哼從身側響起,我...
    開封第一講書人閱讀 42,250評論 0 288
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后,有當地人在樹林里發現了一具尸體,經...
    沈念sama閱讀 48,769評論 1 333
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 40,656評論 3 354
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發現自己被綠了。 大學時的朋友給我發了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 42,853評論 1 369
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖,靈堂內的尸體忽然破棺而出,到底是詐尸還是另有隱情,我是刑警寧澤,帶...
    沈念sama閱讀 38,371評論 5 358
  • 正文 年R本政府宣布,位于F島的核電站,受9級特大地震影響,放射性物質發生泄漏。R本人自食惡果不足惜,卻給世界環境...
    茶點故事閱讀 44,103評論 3 347
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧,春花似錦、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 34,472評論 0 26
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至,卻和暖如春,著一層夾襖步出監牢的瞬間,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 35,717評論 1 281
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人。 一個月前我還...
    沈念sama閱讀 51,487評論 3 390
  • 正文 我出身青樓,卻偏偏與公主長得像,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 47,815評論 2 372

推薦閱讀更多精彩內容