UISearchController应用

一、UISearchController在UITableView的使用
1、在放初始化的搜索框中的控制器代码。

- (void)viewDidLoad {
    [super viewDidLoad];
    [self initUI];
    [self initData];
}
/**
 初始化UI
 */
- (void)initUI{
    //必须要将这个属性设置成YES,不然会在搜索结果的界面有64px的偏移
    self.definesPresentationContext = YES;
    SearchResultController * vc = [[SearchResultController alloc] init];
    //设置搜索的控制器
    self.searchController = [[UISearchController alloc] initWithSearchResultsController:vc];
    //当呈现的时候是否隐藏导航栏
    self.searchController.hidesNavigationBarDuringPresentation = YES;
    //点击searchBar的输入框的时候是否显示灰色的背景
    self.searchController.dimsBackgroundDuringPresentation = YES;
    self.searchController.searchBar.placeholder = @"请输入关键字";
    self.searchController.searchBar.delegate = self;
    self.searchController.searchResultsUpdater = self;
    self.searchController.delegate = self;
    self.tableView.tableHeaderView = self.searchController.searchBar;
    [self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"cell"];
}
/**
 初始化数据源
 */
- (void)initData{
    self.dataArray = [[NSMutableArray alloc] init];
    NSString *path = [[NSBundle mainBundle] pathForResource:@"country" ofType:@"txt"];
    NSString *countriesContent = [NSString stringWithContentsOfFile:path encoding:NSUTF8StringEncoding error:nil];
    self.dataArray = [countriesContent componentsSeparatedByString:@"\n"];
}

#pragma mark - UISearchControllerUpdate
- (void)updateSearchResultsForSearchController:(UISearchController *)searchController
{
    NSString *searchText = searchController.searchBar.text;
    NSPredicate *predicate = [NSPredicate predicateWithFormat:@"(SELF CONTAINS %@)", searchText];
    SearchResultController *resultViewCtrl = (SearchResultController *)searchController.searchResultsController;
    NSArray * arr = [_dataArray filteredArrayUsingPredicate:predicate];
    resultViewCtrl.filterArr = arr;
}

#pragma mark - UISearchController delegate method
- (void)willPresentSearchController:(UISearchController *)searchController {
    
}

- (void)didPresentSearchController:(UISearchController *)searchController {
    
}

- (void)presentSearchController:(UISearchController *)searchController {
    
}

- (void)willDismissSearchController:(UISearchController *)searchController {
    
}

- (void)didDismissSearchController:(UISearchController *)searchController {
    
}

#pragma mark - UISearchBar delegate method
- (void)searchBarTextDidBeginEditing:(UISearchBar *)searchBar {
    NSLog(@"%s", __func__);
}

- (void)searchBarCancelButtonClicked:(UISearchBar *)searchBar {
    NSLog(@"%s", __func__);
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    return self.dataArray.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:@"cell"];
    cell.textLabel.text = self.dataArray[indexPath.row];
    return cell;
}

2、在搜索结果中的代码。

- (void)viewDidLoad {
    [super viewDidLoad];
    [self initUI];
    
    [self initData];
}
/**
 初始化UI
 */
- (void)initUI{
    [self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:cellID];
}
/**
 初始化数据
 */
- (void)initData{
    
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    return self.filterArr.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:cellID];
    cell.textLabel.text = self.filterArr[indexPath.row];
    return cell;
}
- (void)setFilterArr:(NSMutableArray *)filterArr{
    _filterArr = filterArr;
    [self.tableView reloadData];
}

二、UISearchController添加到UIScrollView上
将这个空间添加到self.view上会出现问题

    UIScrollView * scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, self.view.eoc_width, self.view.eoc_height)];
    scrollView.backgroundColor = [UIColor redColor];
    [self.view addSubview:scrollView];
    [scrollView addSubview:self.searchCtrl.searchBar];
- (UISearchController *)searchCtrl {
    if (!_searchCtrl) {
        EOCSearchResultViewCtrl *resultSearchCtrl = [[EOCSearchResultViewCtrl alloc] init];
        _searchCtrl = [[UISearchController alloc] initWithSearchResultsController:resultSearchCtrl];
        _searchCtrl.dimsBackgroundDuringPresentation = YES;
        _searchCtrl.hidesNavigationBarDuringPresentation = YES;
        _searchCtrl.searchBar.placeholder = @"搜索";
        _searchCtrl.searchBar.delegate = self;
        _searchCtrl.searchResultsUpdater = self;
        _searchCtrl.delegate = self;
    }
    
    return _searchCtrl;
    
}

三、将UISearchController添加写成成员变量,代理方法不能不执行。原因:提前释放掉这个对象了。

    self.view.backgroundColor = [UIColor whiteColor];
    EOCSearchResultViewCtrl * vc = [[EOCSearchResultViewCtrl alloc] init];
    
    UISearchController * searchVC = [[UISearchController alloc] initWithSearchResultsController:vc];
    searchVC.searchBar.placeholder = @"搜索";
    searchVC.dimsBackgroundDuringPresentation = YES;
    searchVC.hidesNavigationBarDuringPresentation = YES;
    searchVC.searchBar.placeholder = @"八点钟学院";
    searchVC.searchBar.delegate = self;
    searchVC.searchResultsUpdater = self;

四、改变UISearchController中searchBar的外观

    //修改searchBar中的背景色
    self.searchCtrl.searchBar.barTintColor = [UIColor grayColor];
    //修改searchBar的光标和cancel的颜色
    self.searchCtrl.searchBar.tintColor = [UIColor orangeColor];
    //改变searchBar中的搜索图标
    [self.searchCtrl.searchBar setImage:[UIImage imageNamed:@"voice_gray"] forSearchBarIcon:UISearchBarIconSearch state:UIControlStateNormal];
    //改变searchBar中清楚按钮的图标
    [self.searchCtrl.searchBar setImage:[UIImage imageNamed:@"message_gray"] forSearchBarIcon:UISearchBarIconClear state:UIControlStateNormal];
    //改变searchBar中清楚按钮高亮状态中的图标
    [self.searchCtrl.searchBar setImage:[UIImage imageNamed:@"message_gray"] forSearchBarIcon:UISearchBarIconClear state:UIControlStateHighlighted];
    //改变输入框的背景色和文字颜色
    for (UIView *subView in self.searchVC.searchBar.subviews){
        for (UIView *secondLevelSubview in subView.subviews){
            if ([secondLevelSubview isKindOfClass:[UITextField class]]){
                UITextField *searchBarTextField = (UITextField *)secondLevelSubview;
                searchBarTextField.backgroundColor = [UIColor colorWithHex:0x8C8F93 alpha:1];
                UIColor * color = [UIColor colorWithHex:0x607AA8 alpha:1];
                searchBarTextField.attributedText = [[NSAttributedString alloc] initWithString:@"搜索" attributes:@{NSForegroundColorAttributeName:color}];
                break;
            }
        }
    }
    [self.searchVC.searchBar setImage:[UIImage imageNamed:@"dev_search-1"] forSearchBarIcon:UISearchBarIconSearch state:UIControlStateNormal];
    //一下代码为修改placeholder字体的颜色和大小
    UITextField * searchField = [self.searchVC.searchBar valueForKey:@"_searchField"];
    [searchField setValue:[UIColor redColor] forKeyPath:@"_placeholderLabel.textColor"];
     [searchField setValue:[UIFont boldSystemFontOfSize:16] forKeyPath:@"_placeholderLabel.font"];

48:10 3.29

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,132评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,802评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,566评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,858评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,867评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,695评论 1 282
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,064评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,705评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,915评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,677评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,796评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,432评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,041评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,992评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,223评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,185评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,535评论 2 343

推荐阅读更多精彩内容