#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. HDU 4507 (鬼畜级别的数位DP)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4507 题目大意:求指定范围内与7不沾边的所有数的平方和.结果要mod 10^9+7(鬼畜の元凶) 解题 ...

  2. 【UVa】11270 Tiling Dominoes

    http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&p ...

  3. hiho#14

    军训去了没有打,回来看题跑. T1:hehe 注意X可能是实数233 #include<cstdio> #include<cctype> #include<queue&g ...

  4. Get the image file(s) some informations,Including the Make,Model,Date/Time,etc

    This is a blog about how to get the image file(s) some informations.Including the Make,Model,Date/Ti ...

  5. weblogic sockets 和 thread 问题解决

    原创文章,转载须注明出处. 这个问题网上很多答案,可惜没一个能解决.后来发现是weblogic 必须适配JDK 版本. 一般会报这个错误,There are: 5 active sockets, bu ...

  6. php 上传图片

    学习地址:http://www.imooc.com/video/2473 <?php header("content-type:text/html;charset=utf-8" ...

  7. SVN的学习和安装

    SVN分为服务器版本和客户端版本 服务器:VISUALSVN SERVER https://www.visualsvn.com/server/download/ 安装和配置(都很简单,只要不断的下一步 ...

  8. Phaser.Game这个函数都有哪些参数

    Phaser是一个简单易用且功能强大的html5游戏框架,利用它可以很轻松的开发出一个html5游戏.在这篇文章中我就教大家如何用Phaser来制作一个前段时间很火爆的游戏:Flappy Bird,希 ...

  9. 《编写可维护的 Javascript》读书笔记(附录 A 部分):Javascript 编码风格指南(1)原始值

    记录一下比较有用的编码规范(该指南是基于 Java 语言编码规范和 Javascript 编程规范,同时结合作者 Nicholos Zakas 的个人经验和喜好). 一些关于格式(包括缩进.行的长度. ...

  10. 使用PHP编写发红包程序

    使用PHP编写发红包程序 http://www.jb51.net/article/69815.htm 投稿:hebedich 字体:[增加 减小] 类型:转载 时间:2015-07-22   微信发红 ...