IOS UI 第十篇: UITABLEVIEW
uitableView review yesterday’s knowledge :

QFGroupHead *headView=[[NSBundle mainBundle]loadNibNamed:@"QFGroupHead" owner:nil options:nil][0];
[headView addTarget:self action:@selector(onHeadClicked:) forControlEvents:UIControlEventTouchUpInside];
headView.tag=section;
QFQQGroupModel *model=dataArray[section];
[headView refreshUIWithModel:model];
return headView;
}
NSLog(@"onHeadClicked:%d",headView.tag);
QFQQGroupModel *model=dataArray[headView.tag];
model.isHide=!model.isHide;
[self.myTableView reloadSections:[NSIndexSet indexSetWithIndex:headView.tag] withRowAnimation:UITableViewRowAnimationNone];
}
//在数据源中取出数据模型
QFQQGroupModel *model=dataArray[section];
if (model.isHide) {
return 0;
}
//返回数据模型中相应的数据
return model.groupMember.count;
}
@property int friendNum;
@property (nonatomic,strong) NSMutableArray *groupMember;
@property BOOL isHide;
GroupHead *groupHead = [[NSBundle mainBundle] loadNibNamed:@"GroupHead" owner:nil options:nil][0];
[groupHead addTarget:self action:@selector(onHeadClicked:) forControlEvents:UIControlEventTouchUpInside];
groupHead.tag = section;
[groupHead refreshUIWithModel:self.model modelSection:section];
return groupHead;
}
NSNumber *number = self.model.isHiddenArray[headView.tag];
if(number.intValue == 1)
[self.model isHiddenSection:headView.tag Boolis:NO];
else
[self.model isHiddenSection:headView.tag Boolis:YES];
[self.myTableView reloadSections:[NSIndexSet indexSetWithIndex:headView.tag] withRowAnimation:UITableViewRowAnimationNone];
}
{
NSNumber *number = self.model.isHiddenArray[section];
if(number.intValue){
return 0;
}
return [self.model.groupMemberNum[section] intValue];
}
@property (nonatomic, strong) NSMutableArray *dataArray;
@property (nonatomic, strong) NSMutableArray *groupMemberNum;
@property (nonatomic, strong) NSMutableArray *isHiddenArray;
@property int groupNum;
-(void)begin;
-(void)isHiddenSection:(NSInteger)section Boolis:(BOOL)isbool;
@end
_dataArray = [NSMutableArray array];
_groupName = [NSMutableArray array];
_groupMemberNum = [NSMutableArray array];
_isHiddenArray = [NSMutableArray array];
_groupNum = 10;
for (int i=0; i<10; ++i) {
NSMutableArray *groupArray = [NSMutableArray array];
NSString *groupstr = [NSString stringWithFormat:@"Group %d", i];
[_groupName addObject:groupstr];
int num = arc4random()%10+1;
NSNumber *nsNum = [[NSNumber alloc] initWithBool:NO];
[_isHiddenArray addObject:nsNum];
[_groupMemberNum addObject:[NSString stringWithFormat:@"%d", num]];
for (int j=0; j<num; ++j) {
NSString *str = [NSString stringWithFormat:@"cell %d", j];
[groupArray addObject:str];
}
[_dataArray addObject:groupArray];
}
}
-(void)isHiddenSection:(NSInteger)section Boolis:(BOOL)isbool{
NSNumber *num = [[NSNumber alloc] initWithBool:isbool];
[_isHiddenArray removeObjectAtIndex:section];
[_isHiddenArray insertObject:num atIndex:section];
}
groupName.text = model.groupName[section];
totalMember.text = [NSString stringWithFormat:@"TotalMember:%@", model.groupMemberNum[section]];
NSNumber *number = model.isHiddenArray[section];
if(number.intValue == 0)
hiddenStatus.text = @">";
else hiddenStatus.text = @"v";
}
1、先实例化一个全局数组,用于储存搜索结果。
2、实例化一个UISearchBar,并设置为tableview的tableheadview。
3、用上面实例化的seachbar初始化一个搜索结果显示视图(UISearchDisplayController)
4、设置uiseachDisplayController的三个代理
//searchDC内部有一个talbview,这里设置代理就等于给它内部的tableview设置代理
searchDC.searchResultsDataSource=self;
searchDC.searchResultsDelegate=self;
//searchDC自己的代理
searchDC.delegate=self;
5、导入UISearchDisplayDelegate协议
6、实现UISearchDisplayDelegate的一个重要的代理方法
- (BOOL)searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchString:(NSString *)searchString
每当搜索栏的文字发生变化时,都会调用这个代理方法
在这个方法里面我们遍历整个数据源,找到包含搜索文字的那些,然后放进搜索结果的数组里面(注意,搜索之前要记得把搜索结果的数组先清空)
7、由于myTableView和搜索结果的tableview共用我们这个类的那些代理方法,所以要在所有的代理方法里面加入判断,以返回正确的数据。
例如:
//有多少组
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
//判断是否为searchDisplayController的结果tableview
if (tableView==searchDC.searchResultsTableView) {
return 1;
}
return totalArray.count;
}
、、、、、
8、至此,搜索功能完成。
*/
// MainViewController.m
// UITableViewCellXib_01
//
// Created by YuLei on 4/11/14.
// Copyright (c) 2014 ___DuanYuLei___. All rights reserved.
//
#import "MainViewController.h"
#import "GroupHead.h"
@interface MainViewController () <UITableViewDataSource, UITableViewDelegate, UISearchDisplayDelegate]]>
@property (weak, nonatomic) IBOutlet UITableView *myTableView;
@end
@implementation MainViewController{
UISearchDisplayController *searchDisplayController;
}
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view from its nib.
_model = [[Datamodel alloc] init];
[_model begin];
self.myTableView.delegate = self;
self.myTableView.dataSource = self;
//search function
UISearchBar *searchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, 320, 30)];
self.myTableView.tableHeaderView = searchBar;
searchDisplayController = [[UISearchDisplayController alloc] initWithSearchBar:searchBar contentsController:self];
searchDisplayController.searchResultsDataSource = self;
searchDisplayController.searchResultsDelegate = self;
searchDisplayController.delegate = self;
//create a colorful foot line or clear the line.
UIView *footView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 1)];
footView.backgroundColor = [UIColor clearColor];
self.myTableView.tableFooterView = footView;
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
if(tableView == searchDisplayController.searchResultsTableView)
return 0;
return 44;
}
-(void)onHeadClicked:(UIView *)headView{
NSNumber *number = self.model.isHiddenArray[headView.tag];
if(number.intValue == 1)
[self.model isHiddenSection:headView.tag Boolis:NO];
else
[self.model isHiddenSection:headView.tag Boolis:YES];
[self.myTableView reloadSections:[NSIndexSet indexSetWithIndex:headView.tag] withRowAnimation:UITableViewRowAnimationNone];
}
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
GroupHead *groupHead = [[NSBundle mainBundle] loadNibNamed:@"GroupHead" owner:nil options:nil][0];
if (tableView == searchDisplayController.searchResultsTableView) {
return nil;
}
[groupHead addTarget:self action:@selector(onHeadClicked:) forControlEvents:UIControlEventTouchUpInside];
groupHead.tag = section;
[groupHead refreshUIWithModel:self.model modelSection:section];
return groupHead;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
if (tableView == searchDisplayController.searchResultsTableView) {
return self.model.searchDataArray.count;
}
NSNumber *number = self.model.isHiddenArray[section];
if(number.intValue){
return 0;
}
return [self.model.groupMemberNum[section] intValue];
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
if(tableView == searchDisplayController.searchResultsTableView)
return 1;
return self.model.groupNum;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString *reuseID = @"myCell";
UITableViewCell *cell = [_myTableView dequeueReusableCellWithIdentifier:reuseID];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil];
}
if(tableView == searchDisplayController.searchResultsTableView){
cell.textLabel.text = self.model.searchDataArray[indexPath.row];
}else{
cell.textLabel.text = self.model.dataArray[indexPath.section][indexPath.row];
}
return cell;
}
- (BOOL)searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchString:(NSString *)searchString{
[self.model.searchDataArray removeAllObjects];
for (int i=0; i<self.model.groupNum; ++i) {
NSArray *friends = self.model.dataArray[i];
for (int j=0; j<friends.count; ++j) {
NSString *str = friends[j];
NSRange range = [str rangeOfString:searchString];
if (range.length > 0) {
[self.model.searchDataArray addObject:str];
}
}
}
return YES;
}
@end
UISearchDisplayController *searchDisplayController;
NSMutableDictionary *cacheHeadViewDictionary;
}
[super viewDidLoad];
cacheHeadViewDictionary=[NSMutableDictionary dictionary];
if (tableView == searchDisplayController.searchResultsTableView) {
return nil;
}
GroupHead *groupHead = cacheHeadViewDictionary[[NSString stringWithFormat:@"%d", section]];
if (groupHead == nil) {
groupHead = [[NSBundle mainBundle] loadNibNamed:@"GroupHead" owner:nil options:nil][0];
groupHead.backgroundColor=[UIColor colorWithRed:(CGFloat)random()/RAND_MAX green:(CGFloat)random()/RAND_MAX blue:(CGFloat)random()/RAND_MAX alpha:1];
[groupHead addTarget:self action:@selector(onHeadClicked:) forControlEvents:UIControlEventTouchUpInside];
groupHead.tag = section;
[cacheHeadViewDictionary setObject:groupHead forKey:[NSString stringWithFormat:@"%d",section]];
}
[groupHead refreshUIWithModel:self.model modelSection:section];
return groupHead;
}
IOS UI 第十篇: UITABLEVIEW的更多相关文章
- IOS UI 第十一篇: UITABLEVIEW
DIY a tableviewcell : - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *) ...
- IOS UI 第八篇:基本UI
实现图片的滚动,并且自动停止在每张图片上 - (void)viewDidLoad{ [super viewDidLoad]; UIScrollView *scrollView = [[U ...
- UI第十八节——UITableView
在iOS开发中UITableView可以说是使用最广泛的控件,我们平时使用的软件中到处都可以看到它的影子,基本大部分应用都有UITableView.当然它的广泛使用自然离不开它强大的功能,今天就针对U ...
- iOS UI基础-9.0 UITableView基础
在iOS中,要实现表格数据展示,最常用的做法就是使用UITableView.UITableView继承自UIScrollView,因此支持垂直滚动,而且性能极佳. UITableView有两种样式: ...
- IOS UI 第六篇:基本UI
加两个UI模块 - (void)viewDidLoad{ [self begin1]; [self begin2]; [super viewDidLoad]; // Do ...
- IOS UI 第五篇:基本UI
添加个导航栏: Xib1 *xib1 = [[Xib1 alloc] initWithNibName:@"Xib1" bundle:nil]; UINavig ...
- iOS UI基础-9.2 UITableView 简单微博列表
概述 我们要实现的效果: 这个界面布局也是UITableView实现的,其中的内容就是UITableViewCell,只是这个UITableViewCell是用户自定义实现的.虽然系统自带的UITab ...
- iOS UI基础-9.1 UITableView 团购
概述 接下来,我们要做的是团购界面的设计,最张要实现的效果图及项目结构图 团购数据的展示 思路: 系统自带的tableCell不能展示三个文本,不能满足条件,自定义tableCell 每一个 ...
- IOS UI 第四篇:基本UI
ViewController 应用 再第一个XIB页面创建另一个XIB页面,并且通过按钮调用它 - (IBAction)GoSecond:(id)sender { secondVie ...
随机推荐
- 如何将linux用在开发环境中的
如何将linux用在开发环境中的 1.我为什么要写这篇文章 一直想深入学习一下linux的使用,于是将家里的笔记本装了linux系统,但是要将自己的系统打造一个适合开发的环境确实是一件费心费力的事,而 ...
- dotNET跨平台相关文档
dotNET跨平台相关文档整理 一直在从事C#开发的相关技术工作,从C# 1.0一路用到现在的C# 6.0, 通常情况下被局限于Windows平台,Mono项目把我们C#程序带到了Windows之外的 ...
- 左右c++与java中国的垃圾问题的分析与解决
左右c++与java中国的垃圾问题的分析与解决 DionysosLai(906391500@qq.com) 2014/8/1 问题分析: 之所以会出现中文乱码问题,归根结底在于中文的编码与英文的编码 ...
- Matrix (二维树状数组)
Description Given an N*N matrix A, whose elements are either 0 or 1. A[i, j] means the number in the ...
- Android开源项目总结
Android开源项目--分类汇总 Android开源项目第一篇--个性化控件(View)篇 包含ListView.ActionBar.Menu.ViewPager.Gallery.GridView. ...
- 贪心算法(Greedy Algorithm)最小生成树 克鲁斯卡尔算法(Kruskal's algorithm)
克鲁斯卡尔算法(Kruskal's algorithm)它既是古典最低的一个简单的了解生成树算法. 这充分反映了这一点贪心算法的精髓.该方法可以通常的图被表示.图选择这里借用Wikipedia在.非常 ...
- UVALive 6472 Powers of Pascal
标题手段: 他给了一个无限Pascal阵,定义了powers,然后询问power为P的pascal矩阵里面的第R行C列的元素是多少. 最開始读错题意了...然后 就成了一个神得不得了的题了.后来请教的 ...
- js小记 function 的 length 属性
原文:js小记 function 的 length 属性 [1,2,3]., ,这个略懂js的都知道. 但是 eval.length,RegExp.length,"".toStr ...
- 九度OJ 1068 球半径和数量 (模拟)
题目1068:球的半径和体积 时间限制:1 秒 内存限制:32 兆 特殊判题:否 提交:4797 解决:1696 题目描写叙述: 输入球的中心点和球上某一点的坐标,计算球的半径和体积 输入: 球的中心 ...
- MapReduce的InputFormat学习过程
昨天,经过几个小时的学习.该MapReduce学习的某一位的方法的第一阶段.即当大多数文件的开头的Data至key-value制图.那是,InputFormat的过程.虽说过程不是非常难,可是也存在非 ...