UISearchDisplayController UISearchBar
分组表+本地搜索 UISearchDisplayController UISearchBar 的使用
效果图
@interface CityListViewController :UIViewController<UITableViewDataSource,UITableViewDelegate,UISearchBarDelegate>
@property (nonatomic, retain) UITableView*mTableView;
@property (nonatomic, retain) NSArray*dataList;
@property (nonatomic, retain) NSArray*searchData;
@property (nonatomic, retain)NSMutableArray *allCitys;
@property (nonatomic, retain) UISearchBar*mSearchBar;
@property (nonatomic, retain)UISearchDisplayController *searchController;
@end
#import"CityListViewController.h"
#import "AppDelegate.h"
- (void)viewDidLoad
{
//初始化分组表
self.mTableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 88,320, 480) style:UITableViewStyleGrouped];
self.mTableView.delegate = self;
self.mTableView.dataSource = self;
[self.mTableViewsetContentSize:CGSizeMake(320, 3000)];
//初始化搜索条
self.mSearchBar = [[UISearchBar alloc]initWithFrame:CGRectMake(0, 44, 320, 44)];
[self.mSearchBarsetBackgroundImage:[UIImage imageNamed:@"nav_bg.png"]];
[self.mSearchBar setPlaceholder:@"搜索城市"];
self.mSearchBar.delegate = self;
[self.mSearchBar sizeToFit];
//初始化UISearchDisplayController
self.searchController =[[UISearchDisplayController alloc] initWithSearchBar:self.mSearchBarcontentsController:self];
self.searchController.searchResultsDelegate= self;
self.searchController.searchResultsDataSource = self;
self.searchController.delegate = self;
//解析数据源文件
NSString *path = [[NSBundle mainBundle]pathForResource:@"Provineces" ofType:@"plist"];
self.dataList = [NSMutableArrayarrayWithContentsOfFile:path];
//确定每个分组的行数
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
if([tableViewisEqual:self.searchController.searchResultsTableView]){
NSLog(@"searchData count is%d",[self.searchData count]);
return [self.searchData count];
}
else{
NSDictionary *dic = [self.dataListobjectAtIndex:section];
NSArray *cityCount = [dicobjectForKey:@"Citys"];
int count = (int)[cityCount count];
for(int i = 0;i<count-1;i++){
NSDictionary *d = [cityCountobjectAtIndex:i];
NSString *Name = [dobjectForKey:@"C_Name"];
[self.allCitys addObject:Name];
}
return [cityCount count];
}
}
//分组的个数
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
if([tableViewisEqual:self.searchController.searchResultsTableView])
return 1;
else
return [self.dataList count];
}
//每个分组的Header
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
NSString *HeaderName;
if([tableViewisEqual:self.searchController.searchResultsTableView]){
HeaderName = @"搜索结果";
}else{
NSDictionary *dict = [self.dataListobjectAtIndex:section];
HeaderName = [dictobjectForKey:@"p_Name"];
return HeaderName;
}
return HeaderName;
}
#pragma mark - UISearchDisplayControllerdelegate methods
-(void)filterContentForSearchText:(NSString*)searchText scope:(NSString*)scope {
NSMutableArray *searchResult =[[NSMutableArray alloc] initWithCapacity:0];
int j =(int) [self.allCitys count];
for (int i = 0; i<j-1; i++) {
NSString *str = [self.allCitysobjectAtIndex:i];
if([strrangeOfString:searchText].location != NSNotFound )
{
[searchResult addObject:str];
}
}
self.searchData = [NSArrayarrayWithArray:searchResult];
[searchResult release];
}
-(BOOL)searchDisplayController:(UISearchDisplayController*)controller shouldReloadTableForSearchString:(NSString *)searchString {
[selffilterContentForSearchText:searchString
scope:[[self.searchDisplayController.searchBar scopeButtonTitles] objectAtIndex:[self.searchDisplayController.searchBar selectedScopeButtonIndex]]];
return YES;
}
-(BOOL)searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchScope:(NSInteger)searchOption {
[selffilterContentForSearchText:[self.searchDisplayController.searchBar text] scope:[[self.searchDisplayController.searchBar scopeButtonTitles] objectAtIndex:searchOption]];
return YES;
}
//tableView cell刷新数据
-(UITableViewCell *) tableView:(UITableView *)tableViewcellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *cellName =@"cellName";
UITableViewCell *cell = [tableViewdequeueReusableCellWithIdentifier:cellName];
if(cell == nil)
{
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellName];
}
if([tableViewisEqual:self.searchController.searchResultsTableView]){
cell.textLabel.text = [self.searchDataobjectAtIndex:indexPath.row];
}else{
NSDictionary *dict = [self.dataListobjectAtIndex:[indexPath section]];
NSArray *shengfen = [dictobjectForKey:@"Citys"];
NSDictionary *citys = [shengfenobjectAtIndex:indexPath.row];
NSString *Name = [citysobjectForKey:@"C_Name"];
cell.textLabel.text = Name;
//[self.allCitys addObject:Name];
}
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath*)indexPath
{
if([tableViewisEqual:self.searchController.searchResultsTableView]){
self.cityName = [self.searchDataobjectAtIndex:indexPath.row];
((AppDelegate *)[[UIApplicationsharedApplication]delegate]).APPDelegateCityName = self.cityName;
}else{
self.cityName = [[[[self.dataListobjectAtIndex:indexPath.section] objectForKey:@"Citys"]objectAtIndex:indexPath.row] objectForKey:@"C_Name"];
((AppDelegate *)[[UIApplicationsharedApplication]delegate]).APPDelegateCityName = self.cityName;
}
[self.navigationControllerpopToRootViewControllerAnimated:YES];
}
UISearchDisplayController UISearchBar的更多相关文章
- iOS中的两种搜索方式UISearchDisplayController和UISearchController
大熊猫猪·侯佩原创或翻译作品.欢迎转载,转载请注明出处. 如果觉得写的不好请多提意见,如果觉得不错请多多支持点赞.谢谢! hopy ;) 以前iOS的搜索一般都使用UISearchDisplayCon ...
- iOS - UISearchController
前言 NS_CLASS_DEPRECATED_IOS(3_0, 8_0, "UISearchDisplayController has been replaced with UISearch ...
- iOS - UITableViewController
前言 NS_CLASS_AVAILABLE_IOS(2_0) @interface UITableView : UIScrollView <NSCoding> @available(iOS ...
- UISearchBar和 UISearchDisplayController的使用
感觉好多文章不是很全面,所以本文收集整合了网上的几篇文章,感觉有互相补充的效果. 如果想下载源码来看:http://code4app.com/search/searchbar .本源码与本文无关 1. ...
- 如何在UINavigationBar上添加UISearchBar以及UISearchDisplayController的使用 --OC --iOS
那我们开始吧,下面是Sely写的一个Demo,分享给大家. 新建一个项目, UISearchDisplayController 的 displaysSearchBarInNavigationBar太死 ...
- UISearchBar和UISearchDisplayController
原文 http://hi.baidu.com/happywilma0118/item/e6d5730a499bba1b3a53eef8 UISearchBar继承自UIView.UIResponder ...
- UI UISearchBar UISearchDisplayController实现搜索条、解析颜色
本文转载至 http://blog.sina.com.cn/s/blog_bf2d33bd01017q6l.html @interface ThirdViewController : UIViewCo ...
- 搜索框UISearchController的使用(iOS8.0以后替代UISearchBar + UISearchDisplayController)
1.searchResultsUpdater:设置显示搜索结果的控制器 ? 1 _mySearchController.searchResultsUpdater = self; 2.dimsB ...
- iOS--- UITableView + UISearchDisplayController - - - - -实现搜索功能
iOS中UISearchDisplayController用于搜索,搜索栏的重要性我们就不说了,狼厂就是靠搜索起家的,现在越来越像一匹没有节操的狼,UC浏览器搜索栏现在默认自家的神马搜索,现在不管是社 ...
随机推荐
- 几个更新(Update声明)查询方法
积极 文化: 上的方法,数据库更新Update.的标准格式:Update 表名 set =值 where 条件只是依据数据的来源不同,还是有所差别的: 1.从外部输入这样的比較简单例:update ...
- C#程序读取MAC地址的五种方法(转)
public class GetMac { ///<summary> /// 根据截取ipconfig /all命令的输出流获取网卡Mac ///</summary> ///& ...
- 如何清除应用程序承载 WebBrowser 控件时缓存
原文:如何清除应用程序承载 WebBrowser 控件时缓存 http://support.microsoft.com/kb/262110/zh-cn察看本文应用于的产品 function loadT ...
- 在ASP.NET MVC中使用IIS级别的URL Rewrite
原文 在ASP.NET MVC中使用IIS级别的URL Rewrite 大约一年半前,我在博客上写过一系列关于URL Rewrite的文章(2.3.4),把ASP.NET平台上进行URL Rewrit ...
- AngularJS应用开发思维之1:声明式界面
这篇博客之前承接上一篇:http://www.cnblogs.com/xuema/p/4335180.html 重写示例:模板.指令和视图 AngularJS最显著的特点是用静态的HTML文档,就可以 ...
- MVC验证06-自定义错误信息
原文:MVC验证06-自定义错误信息 本文体验自定义错误信息. 系统默认的错误信息 在"MVC验证02-自定义验证规则.邮件验证"中,我们自定义了一个验证Email的类.如果输 ...
- 12个有趣的c面试题目
1.gets()函数 问:请找出以下代码里的问题: #include<stdio.h> int main(void) { char buff[10]; memset ...
- 最新发布树莓派2代Wi-Fi自动连接实战(适合初学者)
话说天地会珠海分舵在上几天才刚给大家分享了个海外资讯说树莓派2已经发布且Windows10加盟之类的资讯,具体请查看<海外优秀资讯抢先看8 - Windows 10 for Raspberry ...
- Asp.net vNext 学习1
Asp.net vNext 学习之路(一) 概述 asp.net vNext 也叫 asp.net 5.0,意思是微软推出的下一个版本的asp.net.可以说是微软对asp.net的一个比较重大的重新 ...
- NET Web开发
.NET Web开发初学者必知的四个网站 No.1 W3school 链接: http://www.w3school.com.cn/ 预览: 介绍: 全球最大Web前端技术教程网站.内容涵盖从基础 ...