UI:UISearchController 搜索

初始化方法

- (instancetype)initWithSearchResultsController:(nullable UIViewController *)searchResultsController;

常用屬性

  searchResultsUpdater:設(shè)置搜索結(jié)果刷新者(設(shè)置該屬性需遵守 UISearchResultsUpdating協(xié)議)
  active:設(shè)置(獲纫厣獭)當(dāng)前搜索狀態(tài)
  delegate:設(shè)置代理
  dimsBackgroundDuringPresentation:設(shè)置是否在搜索時(shí)顯示半透明背景
  hidesNavigationBarDuringPresentation:設(shè)置是否在搜索時(shí)隱藏導(dǎo)航欄
  searchResultsController:搜索結(jié)果控制器
  searchBar:搜索框

UISearchBar

  • 常用屬性

    autocapitalizationType:設(shè)置自動(dòng)大小寫樣式
    tintColor:設(shè)置前景色
    barTintColor:設(shè)置背景顏色
    searchBarStyle:設(shè)置搜索框樣式
    translucent:設(shè)置是否半透明
    

UISearchResultsUpdating

  • UISearchResultsUpdating是一個(gè)結(jié)果刷新協(xié)議,其提供的方法如下
// 每次更新搜索框里的文字顷窒,就會(huì)調(diào)用這個(gè)方法
- (void)updateSearchResultsForSearchController:(UISearchController *)searchController;

謂詞

  • NSPredicate 創(chuàng)建謂詞

    謂詞創(chuàng)建方法:
    +(NSPredicate *)predicateWithFormat:(NSString *)predicateFormat, ...;
    // 示例:創(chuàng)建一個(gè)以‘A’字母開頭的謂詞判斷
    NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF BEGINSWITH [CD] %@", @"A"];
    
  • 根據(jù)謂詞判斷在數(shù)組中進(jìn)行搜索失暂,得到結(jié)果數(shù)組的方法如下:

    - (NSArray<ObjectType> *)filteredArrayUsingPredicate:(NSPredicate *)predicate; 
    
  • 代碼示例:

#import "ViewController.h"

static NSString *const kReusableCellIdentifier = @"identifier";

@interface ViewController ()  <UITableViewDelegate, UITableViewDataSource, UISearchResultsUpdating>{

    NSMutableArray *_dataSource; /**< 數(shù)據(jù)源 */
    NSMutableArray *_searchResults; /**< 搜索結(jié)果 */
}

@property (nonatomic, strong) UITableView *tableView; /**< 表格視圖 */
@property (nonatomic, strong) UISearchController *searchController; /**< 搜索控制器 */

- (void)initializeDataSource; /**< 初始化數(shù)據(jù)源 */
- (void)initializeUserInterface; /**< 初始化用戶界面 */

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    [self initializeDataSource];
    [self initializeUserInterface];
}

#pragma mark *** Initialize methods ***

- (void)initializeDataSource {
    // 初始化數(shù)據(jù)源
    _dataSource = [NSMutableArray arrayWithArray:[UIFont familyNames]];
}

- (void)initializeUserInterface {

    self.view.backgroundColor = [UIColor whiteColor];

    // 關(guān)閉系統(tǒng)自動(dòng)偏移
    self.automaticallyAdjustsScrollViewInsets = NO;

    // 加載表格視圖
    [self.view addSubview:self.tableView];

    // 添加導(dǎo)航欄
    self.tableView.tableHeaderView = self.searchController.searchBar;

}

#pragma mark *** <UITableViewDelegate, UITableViewDataSource> ***

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    // 如果用戶正在搜索瓢捉,則返回搜索結(jié)果的count逼裆,否則直接返回?cái)?shù)據(jù)源數(shù)組的count橱乱;
    if (self.searchController.active) {
        return _searchResults.count;
    }else {
        return _dataSource.count;
    }
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:kReusableCellIdentifier];
    if (!cell) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:kReusableCellIdentifier];
    }

    // 如果用戶正在搜索盐欺,則返回搜索結(jié)果對(duì)應(yīng)的數(shù)據(jù),否則直接返回?cái)?shù)據(jù)數(shù)組對(duì)應(yīng)的數(shù)據(jù)仅醇;
    if (self.searchController.active) {
        cell.textLabel.text = _searchResults[indexPath.row];
    }else {
        cell.textLabel.text = _dataSource[indexPath.row];
    }
    return cell;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

    // 取消選中
    [tableView deselectRowAtIndexPath:indexPath animated:YES];

    if (self.searchController.active) {
        NSLog(@"%@", _searchResults[indexPath.row]);
    }else {
        NSLog(@"%@", _dataSource[indexPath.row]);
    }

    // 停止搜索
    self.searchController.active = NO;
}

#pragma mark *** <UISearchResultsUpdating> ***

// 每次更新搜索框里的文字冗美,就會(huì)調(diào)用這個(gè)方法
- (void)updateSearchResultsForSearchController:(UISearchController *)searchController {

    // 獲取搜索框里地字符串
    NSString *searchString = searchController.searchBar.text;

    // 謂詞
    /**
     1.BEGINSWITH : 搜索結(jié)果的字符串是以搜索框里的字符開頭的
     2.ENDSWITH   : 搜索結(jié)果的字符串是以搜索框里的字符結(jié)尾的
     3.CONTAINS   : 搜索結(jié)果的字符串包含搜索框里的字符

    [c]不區(qū)分大小寫[d]不區(qū)分發(fā)音符號(hào)即沒有重音符號(hào)[cd]既不區(qū)分大小寫,也不區(qū)分發(fā)音符號(hào)析二。

     */

    // 創(chuàng)建謂詞
    NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF BEGINSWITH [CD] %@", searchString];

    // 如果搜索框里有文字粉洼,就按謂詞的匹配結(jié)果初始化結(jié)果數(shù)組,否則叶摄,就用字體列表數(shù)組初始化結(jié)果數(shù)組属韧。
    if (_searchResults != nil && searchString.length > 0) {
        [_searchResults removeAllObjects];
        _searchResults = [NSMutableArray arrayWithArray:[_dataSource filteredArrayUsingPredicate:predicate]];
    } else if (searchString.length == 0) {
        _searchResults = [NSMutableArray arrayWithArray:_dataSource];
    }

    // 刷新表格視圖
    [_tableView reloadData];
}


#pragma mark *** Getters ***

- (UITableView *)tableView {
    if (!_tableView) {
        _tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 64, CGRectGetWidth(self.view.bounds), CGRectGetHeight(self.view.bounds) - 64) style:UITableViewStylePlain];
        // 設(shè)置代理
        _tableView.delegate = self;
        // 設(shè)置數(shù)據(jù)源
        _tableView.dataSource = self;
        // 設(shè)置單元格高度
        _tableView.rowHeight = 50;
    }
    return _tableView;
}


- (UISearchController *)searchController {
    if (!_searchController) {
        // 初始化搜索控制器
        _searchController = [[UISearchController alloc] initWithSearchResultsController:nil];
        // 設(shè)置代理
        _searchController.searchResultsUpdater = self;
        // 設(shè)置半透明背景,當(dāng)設(shè)置當(dāng)前視圖控制器作為搜索結(jié)果的視圖控制器時(shí)蛤吓,要設(shè)為NO宵喂;
        _searchController.dimsBackgroundDuringPresentation = NO;
        // 隱藏導(dǎo)航欄
        _searchController.hidesNavigationBarDuringPresentation = YES;
        // 關(guān)掉自動(dòng)大寫鎖定
        _searchController.searchBar.autocapitalizationType = UITextAutocapitalizationTypeNone;
        // 設(shè)置searchBar的frame
        _searchController.searchBar.frame = CGRectMake(0, 0, CGRectGetWidth(self.view.bounds), 44);
    }
    return _searchController;
}

@end
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市会傲,隨后出現(xiàn)的幾起案子锅棕,更是在濱河造成了極大的恐慌,老刑警劉巖淌山,帶你破解...
    沈念sama閱讀 211,290評(píng)論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件裸燎,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡泼疑,警方通過查閱死者的電腦和手機(jī)德绿,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,107評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人移稳,你說我怎么就攤上這事蕴纳。” “怎么了个粱?”我有些...
    開封第一講書人閱讀 156,872評(píng)論 0 347
  • 文/不壞的土叔 我叫張陵袱蚓,是天一觀的道長(zhǎng)。 經(jīng)常有香客問我几蜻,道長(zhǎng)喇潘,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,415評(píng)論 1 283
  • 正文 為了忘掉前任梭稚,我火速辦了婚禮颖低,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘弧烤。我一直安慰自己忱屑,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,453評(píng)論 6 385
  • 文/花漫 我一把揭開白布暇昂。 她就那樣靜靜地躺著莺戒,像睡著了一般。 火紅的嫁衣襯著肌膚如雪急波。 梳的紋絲不亂的頭發(fā)上从铲,一...
    開封第一講書人閱讀 49,784評(píng)論 1 290
  • 那天,我揣著相機(jī)與錄音澄暮,去河邊找鬼名段。 笑死,一個(gè)胖子當(dāng)著我的面吹牛泣懊,可吹牛的內(nèi)容都是我干的伸辟。 我是一名探鬼主播,決...
    沈念sama閱讀 38,927評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼馍刮,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼信夫!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起卡啰,我...
    開封第一講書人閱讀 37,691評(píng)論 0 266
  • 序言:老撾萬榮一對(duì)情侶失蹤静稻,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后碎乃,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體姊扔,經(jīng)...
    沈念sama閱讀 44,137評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,472評(píng)論 2 326
  • 正文 我和宋清朗相戀三年梅誓,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,622評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡梗掰,死狀恐怖嵌言,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情及穗,我是刑警寧澤摧茴,帶...
    沈念sama閱讀 34,289評(píng)論 4 329
  • 正文 年R本政府宣布,位于F島的核電站埂陆,受9級(jí)特大地震影響苛白,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜焚虱,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,887評(píng)論 3 312
  • 文/蒙蒙 一购裙、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧鹃栽,春花似錦躏率、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,741評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至丰嘉,卻和暖如春夯到,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背饮亏。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評(píng)論 1 265
  • 我被黑心中介騙來泰國打工黄娘, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人克滴。 一個(gè)月前我還...
    沈念sama閱讀 46,316評(píng)論 2 360
  • 正文 我出身青樓逼争,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國和親劝赔。 傳聞我的和親對(duì)象是個(gè)殘疾皇子誓焦,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,490評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容

  • 轉(zhuǎn)載自:http://www.cocoachina.com/ios/20160111/14926.html 1、大...
    一筆春秋閱讀 2,840評(píng)論 0 2
  • NSPredicate是一個(gè)Foundation類着帽,它指定數(shù)據(jù)被獲取或者過濾的方式杂伟。它的查詢語言就像SQL的WHE...
    Dean麥兜閱讀 370評(píng)論 0 2
  • 廢話不多說,直接上干貨 ---------------------------------------------...
    小小趙紙農(nóng)閱讀 3,343評(píng)論 0 15
  • 前言 有時(shí)我們需要在一大段長(zhǎng)文本中過濾出我們需要的字段仍翰,或者檢驗(yàn)該文本是否符合要求(該文本是否是郵箱赫粥,鏈接,電話號(hào)...
    進(jìn)無盡閱讀 954評(píng)論 0 1
  • 長(zhǎng)笑踏歌行予借,寒霜溯發(fā)纓越平。 青虹光映雪频蛔,玉樹寞留旌。 易水風(fēng)蕭恨秦叛,蛟宮蟒野驚晦溪。 嵇琴書仗義,美酒壯豪情挣跋。 關(guān)前擒禍?zhǔn)?..
    周延龍閱讀 171評(píng)論 2 2