iOS开发-搜索栏UISearchBar和UISearchController

简介:

iOS中UISearchDisplayController用于搜索,搜索栏的重要性我们就不说了,狼厂就是靠搜索起家的,现在越来越像一匹没有节操的狼,UC浏览器搜索栏现在默认自家的神马搜索,现在不管是社交,O2O还是在线教育等都会有一个搜索栏的实现,不过彼此实现效果是不一样的。iOS中的搜索栏实现起来相对简单一点,网上也有很多参考资料,不过靠谱的不是很多,很多都是iOS 8.0之前的实现,iOS 8.0上的实现貌似很少看到,可以运行,不过会看到searchDisplayController' is deprecated: first deprecated in iOS 8.0警告,看了一些老外的代码,使用了一下UISearchController感觉还是非常不错的。

UISearchBar和UISearchDisplayController

是网上最常见的也算是最简单的,也有使用Searh Bar Search Display Controller的控件的,本文就简单的使用Search Bar和UITableView实现搜索Demo的,最上面的就是搜索栏,之前的就是TableView:

为了实现搜索需要声明委托UISearchBarDelegate,UISearchDisplayDelegate,其中搜索主要使用的就是UISearchDisplayDelegate,具体代码实现过程:

声明字段:

1
2
3
@property  (strong, nonatomic NSMutableArray   *dataList;
 
@property  (strong, nonatomic NSMutableArray   *searchList;

 初始化数据:

1
2
3
4
5
self .dataList=[ NSMutableArray  arrayWithCapacity:100];
   
   for  ( NSInteger  i=0; i<100; i++) {
       [ self .dataList addObject:[ NSString  stringWithFormat:@ "%ld-FlyElephant" ,( long )i]];
   }

 设置区域:

1
2
3
4
//设置区域
-( NSInteger )numberOfSectionsInTableView:(UITableView *)tableView{
     return  1;
}

 设置区域的行数(重点),这个就是使用委托之后需要需要判断是一下是否是需要使用Search之后的视图:

1
2
3
4
5
6
7
-( NSInteger )tableView:(UITableView *)tableView numberOfRowsInSection:( NSInteger )section{
         if  (tableView ==  self .searchDisplayController.searchResultsTableView) {
             return  [ self .searchList count];
         } else {
             return  [ self .dataList count];
     }
}

 同样的返回单元格也有两种情况,一种是初始化数据,一种是过滤之后的数据视图:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:( NSIndexPath  *)indexPath{
     static  NSString  *flag=@ "cellFlag" ;
     UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:flag];
     if  (cell== nil ) {
         cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:flag];
     }
     if  (tableView== self .searchDisplayController.searchResultsTableView) {
         [cell.textLabel setText: self .searchList[indexPath.row]];
     }
     else {
         [cell.textLabel setText: self .dataList[indexPath.row]];
     }
 
     return  cell;
}

 UISearchBarDelegate中的开始和结束的事件:

1
2
3
4
5
6
7
8
9
- ( BOOL )searchBarShouldBeginEditing:(UISearchBar *)searchBar{
     NSLog (@ "搜索Begin" );
     return  YES ;
}
 
- ( BOOL )searchBarShouldEndEditing:(UISearchBar *)searchBar{
     NSLog (@ "搜索End" );
     return  YES ;
}

搜索时过滤数据:

1
2
3
4
5
6
7
8
9
10
11
12
- ( BOOL )searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchString:( NSString  *)searchString{
     // 谓词的包含语法,之前文章介绍过http://www.cnblogs.com/xiaofeixiang/
     NSPredicate  *preicate = [ NSPredicate  predicateWithFormat:@ "SELF CONTAINS[c] %@" , searchString];
     
     if  ( self .searchList!=  nil ) {
         [ self .searchList removeAllObjects];
     }
     //过滤数据
     self .searchList= [ NSMutableArray  arrayWithArray:[_dataList filteredArrayUsingPredicate:preicate]];
     //刷新表格
     return  YES ;
}

 最终效果如下:

UISearchController实现搜索

UISeachBar通过UISearchDisplayDelegate实现上面的效果是没有问题的,网上也有很多类似的实现效果,不过是警告的,信息如下: 'searchDisplayController' is deprecated: first deprecated in iOS 8.0,这么明显一个警告总不能视而不见吧StackOverFlow中发现UISearchDisplayController is deprecated in IOS8.0, and recommended to use UISearchController instead,也就是说iOS 8.0不推荐UISearchDisplayController,也就是不推荐使用UISearchDisplayDelegate,但是可以通过UISearchController实现UISearchResultsUpdating这个委托实现上面的效果;

视图中中需要声明UISearchResultsUpdating:

1
2
3
4
@interface  ViewController : UITableViewController<UITableViewDelegate,UITableViewDataSource,UISearchBarDelegate,UISearchResultsUpdating>
 
 
@end

 属性声明:

1
@property  ( nonatomic , strong) UISearchController *searchController;

 需要自己初始化一下UISearchController:

1
2
3
4
5
6
7
8
9
10
11
_searchController = [[UISearchController alloc] initWithSearchResultsController: nil ];
 
_searchController.searchResultsUpdater =  self ;
 
_searchController.dimsBackgroundDuringPresentation =  NO ;
 
_searchController.hidesNavigationBarDuringPresentation =  NO ;
 
_searchController.searchBar.frame = CGRectMake( self .searchController.searchBar.frame.origin.x,  self .searchController.searchBar.frame.origin.y,  self .searchController.searchBar.frame.size.width, 44.0);
 
self .tableView.tableHeaderView =  self .searchController.searchBar;

 之前是通过判断搜索时候的TableView,不过现在直接使用self.searchController.active进行判断即可,也就是UISearchController的active属性:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//设置区域的行数
-( NSInteger )tableView:(UITableView *)tableView numberOfRowsInSection:( NSInteger )section{
     
             if  ( self .searchController.active) {
                 return  [ self .searchList count];
             } else {
                 return  [ self .dataList count];
             }
     
}
 
//返回单元格内容
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:( NSIndexPath  *)indexPath{
     static  NSString  *flag=@ "cellFlag" ;
     UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:flag];
     if  (cell== nil ) {
         cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:flag];
     }
     if  ( self .searchController.active) {
         [cell.textLabel setText: self .searchList[indexPath.row]];
     }
     else {
         [cell.textLabel setText: self .dataList[indexPath.row]];
     }
     return  cell;
}

 具体调用的时候使用的方法也发生了改变,这个时候使用updateSearchResultsForSearchController进行结果过滤:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
-( void )updateSearchResultsForSearchController:(UISearchController *)searchController {
     
     NSString  *searchString = [ self .searchController.searchBar text];
     
     NSPredicate  *preicate = [ NSPredicate  predicateWithFormat:@ "SELF CONTAINS[c] %@" , searchString];
     
     if  ( self .searchList!=  nil ) {
         [ self .searchList removeAllObjects];
     }
     //过滤数据
     self .searchList= [ NSMutableArray  arrayWithArray:[_dataList filteredArrayUsingPredicate:preicate]];
     //刷新表格
 
     [ self .tableView reloadData];
}

 效果演示:

 

本文转自Fly_Elephant博客园博客,原文链接:http://www.cnblogs.com/xiaofeixiang/p/4273620.html,如需转载请自行联系原作者

相关文章
|
4天前
|
设计模式 前端开发 Swift
探索iOS开发:从初级到高级的旅程
【10月更文挑战第31天】在这篇文章中,我们将一起踏上iOS开发的旅程。无论你是初学者还是有经验的开发者,这篇文章都将为你提供有价值的信息和技巧。我们将从基础开始,逐步深入到更高级的技术和概念。让我们一起探索iOS开发的世界吧!
|
7天前
|
设计模式 前端开发 Swift
探索iOS开发:从初级到高级的旅程
【10月更文挑战第28天】在这篇技术性文章中,我们将一起踏上一段探索iOS开发的旅程。无论你是刚入门的新手,还是希望提升技能的开发者,这篇文章都将为你提供宝贵的指导和灵感。我们将从基础概念开始,逐步深入到高级主题,如设计模式、性能优化等。通过阅读这篇文章,你将获得一个清晰的学习路径,帮助你在iOS开发领域不断成长。
32 2
|
12天前
|
安全 API Swift
探索iOS开发中的Swift语言之美
【10月更文挑战第23天】在数字时代的浪潮中,iOS开发如同一艘航船,而Swift语言则是推动这艘船前进的风帆。本文将带你领略Swift的独特魅力,从语法到设计哲学,再到实际应用案例,我们将一步步深入这个现代编程语言的世界。你将发现,Swift不仅仅是一种编程语言,它是苹果生态系统中的一个创新工具,它让iOS开发变得更加高效、安全和有趣。让我们一起启航,探索Swift的奥秘,感受编程的乐趣。
|
14天前
|
Swift iOS开发 开发者
探索iOS开发中的SwiftUI框架
【10月更文挑战第21天】在苹果生态系统中,SwiftUI的引入无疑为iOS应用开发带来了革命性的变化。本文将通过深入浅出的方式,带领读者了解SwiftUI的基本概念、核心优势以及如何在实际项目中运用这一框架。我们将从一个简单的例子开始,逐步深入到更复杂的应用场景,让初学者能够快速上手,同时也为有经验的开发者提供一些深度使用的技巧和策略。
40 1
|
2天前
|
存储 数据可视化 Swift
探索iOS开发之旅:从新手到专家
【10月更文挑战第33天】在这篇文章中,我们将一起踏上一场激动人心的iOS开发之旅。无论你是刚刚入门的新手,还是已经有一定经验的开发者,这篇文章都将为你提供宝贵的知识和技能。我们将从基础的iOS开发概念开始,逐步深入到更复杂的主题,如用户界面设计、数据存储和网络编程等。通过阅读这篇文章,你将获得成为一名优秀iOS开发者所需的全面技能和知识。让我们一起开始吧!
|
3天前
|
移动开发 Java Android开发
探索Android与iOS开发的差异性与互联性
【10月更文挑战第32天】在移动开发的大潮中,Android和iOS两大平台各领风骚。本文将深入浅出地探讨这两个平台的开发差异,并通过实际代码示例,展示如何在各自平台上实现相似的功能。我们将从开发环境、编程语言、用户界面设计、性能优化等多个角度进行对比分析,旨在为开发者提供跨平台开发的实用指南。
20 0
|
30天前
|
Android开发 Swift iOS开发
探索安卓与iOS开发的差异:从代码到用户体验
【10月更文挑战第5天】在移动应用开发的广阔天地中,安卓和iOS两大平台各占半壁江山。它们在技术架构、开发环境及用户体验上有着根本的不同。本文通过比较这两种平台的开发过程,揭示背后的设计理念和技术选择如何影响最终产品。我们将深入探讨各自平台的代码示例,理解开发者面临的挑战,以及这些差异如何塑造用户的日常体验。
|
1月前
|
Java Android开发 Swift
安卓与iOS开发对比:平台选择对项目成功的影响
【10月更文挑战第4天】在移动应用开发的世界中,选择合适的平台是至关重要的。本文将深入探讨安卓和iOS两大主流平台的开发环境、用户基础、市场份额和开发成本等方面的差异,并分析这些差异如何影响项目的最终成果。通过比较这两个平台的优势与挑战,开发者可以更好地决定哪个平台更适合他们的项目需求。
100 1
|
1月前
|
设计模式 安全 Swift
探索iOS开发:打造你的第一个天气应用
【9月更文挑战第36天】在这篇文章中,我们将一起踏上iOS开发的旅程,从零开始构建一个简单的天气应用。文章将通过通俗易懂的语言,引导你理解iOS开发的基本概念,掌握Swift语言的核心语法,并逐步实现一个具有实际功能的天气应用。我们将遵循“学中做,做中学”的原则,让理论知识和实践操作紧密结合,确保学习过程既高效又有趣。无论你是编程新手还是希望拓展技能的开发者,这篇文章都将为你打开一扇通往iOS开发世界的大门。
|
1月前
|
搜索推荐 IDE API
打造个性化天气应用:iOS开发之旅
【9月更文挑战第35天】在这篇文章中,我们将一起踏上iOS开发的旅程,通过创建一个个性化的天气应用来探索Swift编程语言的魅力和iOS平台的强大功能。无论你是编程新手还是希望扩展你的技能集,这个项目都将为你提供实战经验,帮助你理解从构思到实现一个应用的全过程。让我们开始吧,构建你自己的天气应用,探索更多可能!
62 1