#import "Search_ViewController.h"

@interface Search_ViewController ()<UITableViewDataSource,UITableViewDelegate,UISearchDisplayDelegate,UISearchBarDelegate>

@property(nonatomic,strong)NSArray*dataArr;//数据源

@property(nonatomic,strong)NSArray*resultsArr;//搜索结果

@property(nonatomic,strong)UISearchBar*search;

@property(nonatomic,strong)UISearchDisplayController* searchPlay;

@property(nonatomic,strong)UITableView*aTableView;

@end

@implementation Search_ViewController

- (void)viewDidLoad

{

[super viewDidLoad];

self.title=@"搜索";

_dataArr= [[NSArray alloc]initWithObjects:@"aaa",@"abc",@"aqq",@"bdc",@"gcd",@"mnb",@"zzz",nil];

[self createView];

// Do any additional setup after loading the view.

}

- (void) createView

{

_aTableView= [[UITableView alloc]initWithFrame:CGRectMake(0,0,320,480)];

_aTableView.delegate=self;

_aTableView.dataSource=self;

[self.view addSubview:_aTableView];

}

#pragma mark -

#pragma mark UITableViewDelegate

-(UIView*)tableView:(UITableView*)tableView viewForHeaderInSection:(NSInteger)section

{

_search= [[UISearchBar alloc]initWithFrame:CGRectMake(0,0,320,40)];

_search.backgroundColor= [UIColor redColor];

_search.delegate=self;

_search.showsCancelButton=YES;

_search.keyboardType=UIKeyboardTypeDefault;

_searchPlay= [[UISearchDisplayController alloc]initWithSearchBar:self.search contentsController:self];

_searchPlay.delegate=self;

_searchPlay.searchResultsDataSource=self;

_searchPlay.searchResultsDelegate=self;

_searchPlay.active=NO;

return _searchPlay.searchBar;

}

- (BOOL)searchBarShouldEndEditing:(UISearchBar*)searchBar

{

NSLog(@"取消");

return YES;

}

- (CGFloat)tableView:(UITableView*)tableView heightForHeaderInSection:(NSInteger)section

{

return  tableView ==self.searchPlay.searchResultsTableView?0:40;

}

- (NSInteger)tableView:(UITableView*)tableView numberOfRowsInSection:(NSInteger)section{

NSInteger row =0;

if([tableView isEqual:self.searchPlay.searchResultsTableView]) {

row = [self.resultsArr count];

}else{

row = [self.dataArr count];

}

return row;

}

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

{

static NSString *CellIdentifier =@"Cell";

UITableViewCell*cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

if(!cell) {

cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];

}

if([tableView isEqual:self.searchPlay.searchResultsTableView]) {

cell.textLabel.text= [self.resultsArr objectAtIndex:indexPath.row];

}else{

cell.textLabel.text= [self.dataArr objectAtIndex:indexPath.row];

}

return cell;

}

#pragma mark -

#pragma mark UISearchDisplayControllerDelegate

//text是输入的文本,scope是搜索范围

- (void) searchText:(NSString*)text andWithScope:(NSString*)scope

{

//CONTAINS是字符串比较操作符,

NSPredicate*result = [NSPredicate predicateWithFormat:@"SELF contains[cd] %@",text];

self.resultsArr= [self.dataArr filteredArrayUsingPredicate:result];

}

- (BOOL) searchDisplayController:(UISearchDisplayController*)controller shouldReloadTableForSearchString:(NSString*)searchString

{

// searchString是输入的文本

//返回结果数据读取搜索范围在选择范围

NSArray*searScope = [self.searchPlay.searchBar scopeButtonTitles];//数组范围

[self searchText:searchString andWithScope:[searScope objectAtIndex:[self.searchPlay.searchBar selectedScopeButtonIndex]]];

return YES;

}

- (BOOL) searchDisplayController:(UISearchDisplayController*)controller shouldReloadTableForSearchScope:(NSInteger)searchOption

{

NSString*inputText =self.searchPlay.searchBar.text;//搜索输入的文本

NSArray*searScope = [self.searchPlay.searchBar scopeButtonTitles];//索索范围

[self searchText:inputText andWithScope:[searScope objectAtIndex:searchOption]];

return YES;

}

模糊搜索UISearchBar的更多相关文章

  1. iOS 如何自定义UISearchBar 中textField的高度

    iOS 如何自定义UISearchBar 中textField的高度 只需设置下边的方法就可以 [_searchBar setSearchFieldBackgroundImage:[UIImage i ...

  2. MySQL中进行模糊搜索的一些问题

    在搜索数据库中的数据时,SQL 通配符可以替代一个或多个字符.SQL 通配符必须与 LIKE 运算符一起使用.在 SQL 中,可使用以下通配符:通配符 描述       % 替代一个或多个字符     ...

  3. iOS之搜索框UISearchController的使用(iOS8.0以后替代UISearchBar+display)

    在iOS 8.0以上版本中, 我们可以使用UISearchController来非常方便地在UITableView中添加搜索框. 而在之前版本中, 我们还是必须使用UISearchBar + UISe ...

  4. 更改UIsearchbar 的背景和cancel按钮(转)

    修改背景 searchbar =[[UISearchBar alloc]initWithFrame:CGRectMake(,KTopBarHeight, , KTopBarHeight)]; sear ...

  5. UISearchBar控件-让我们来搞定!(转)

    转载自:http://blog.sina.com.cn/s/blog_7b9d64af0101dfg8.html     最近用到搜索功能.于是,经过不断的研究,终于,有点懂了. 那就来总结一下吧,好 ...

  6. 使用 JavaScript 实现简单候选项推荐功能(模糊搜索)【收藏】【转】

    当我们使用 Google 等搜索功能时,会出现与搜索内容有关的候选项.使用 JavaScript 搜索字符串,通常会使用 indexOf 或者 search 函数,但是非常僵硬,只能搜索匹配特定词语. ...

  7. iOS开发——UI进阶篇(十九)UISearchBar控件简介

    最近用到搜索功能.总结一下 搜索,无疑可以使用UISearchBar控件! 那就先了解一下UISearchBar控件吧! UISearchBar控件就是要为你完成搜索功能的一个专用控件.它集成了很多你 ...

  8. IOS开发UISearchBar失去第一响应者身份后,取消按钮不执行点击事件的问题

    在iOS开发中,使用UISearchBar的时候,当搜索框失去焦点的时候,取消按钮是默认不能点击的,如图按钮的颜色是灰色的:  这是因为此时取消按钮的enabled属性被设置为NO了,那么当我们需要让 ...

  9. 修改UISearchBar的背景颜色

    当你看到这篇博客你就已经发现了用_searchBar.backgroundColor = [UIColor clearColor];来设置UISearchBar的颜色完全没有效果: 并且,有些方法是想 ...

随机推荐

  1. Insert Function before and after main function

    Source code: 1: #include<stdio.h> 2: void myStartupFun (void) __attribute__ ((constructor)); 3 ...

  2. css3 flex流动自适应响应式布局样式类

    1.再说css3 flex 一旦一个容器赋予了display:flex属性,将会有以下特点: 项目无法设置浮动. 列表的样式会被清除. 无法使用vertical-align设置垂直对齐方式. 目前互联 ...

  3. 【wikioi】1033 蚯蚓的游戏问题(费用流)

    http://wikioi.com/problem/1033/ 这题也是很水的费用流啊,同之前那题一样,拆点然后建边,容量为1,费用为点权.然后建个源连第一行每个点,容量为1,费用为0,然后最后一行每 ...

  4. #ifdef __cplusplus extern "C" { #endif //一段代码 #ifdef __cplusplus } #endif

    这样的代码到底是什么意思呢?首先,__cplusplus是cpp中的自定义宏,那么定义了这个宏的话表示这是一段cpp的代码,也就是说,上面的代码的含义是:如果这是一段cpp的代码,那么加入" ...

  5. jquery判断是否出现滚动条

    $(document).ready(function(){ var winH = $(window).height(); //页面可视区域高度 $(window).scroll(function () ...

  6. Intent学习笔记

    Intent首先字面意思大概是意图.负责activity之间或者,activity与service等(我只知道这么点)之间信息的传递.就跟快递员起的作用差不多(我这这么理解),由一下六部分组成: Co ...

  7. while,do while和for循环语句的用法

    一.while的用法 //循环 int i = 10; while(i > 0){ if(i==8) {i--; continue;//跳过 } System.out.println(--i); ...

  8. linux load average

    性能分析_linux服务器CPU_Load Average 理解Linux系统中的load average(图文版) 理解Load Average做好压力测试 top命令的Load average 含 ...

  9. [办公自动化] 再读《让EXCEL飞》(从excel导入access数据时,union联合查询,数据源中没有包含可见的表格)

    一年多以前就买了@Mrexcel的<让excel飞>这本书.整体思路是利用access结合excel,大幅度提高数据分析效率. 最近又拿出来看了看.第十五章,比高级筛选更“高级”,P241 ...

  10. 纯PHP实现定时器任务(Timer)

    纯PHP实现定时器任务(Timer)   定时器任务,在WEB应用比较常见,如何使用PHP实现定时器任务,大致有两种方案:1)使用Crontab命令,写一个shell脚本,在脚本中调用PHP文件,然后 ...