UITableView

插入行。删除行。折叠区。设置索引。刷新表格。注册cell。


//UITableView的ADD

// NSString * name = @"new";

//NSInteger section = indexPath.section;

NSMutableArray * newArray = [dataArray objectAtIndex:indexPath.section];

[newArray addObject:dataArray [indexPath.section] [indexPath.row]];

//NSInteger row =  newArray.count - 1;

NSIndexPath * path = [NSIndexPath indexPathForRow:newArray.count- 1 inSection:indexPath.section];

[tableView insertRowsAtIndexPaths:@[path] withRowAnimation:UITableViewRowAnimationFade];

//UITableView的DELETE

NSMutableArray * lastArray =dataArray [indexPath.section];

if(lastArray.count> 0) {

[lastArray removeObjectAtIndex:indexPath.row];

}

[tableView reloadData];

UITableView的cell折叠

#import"ViewController.h"

#import"customTableViewCell.h"

@interfaceViewController() {

UITableView * table;

BOOL flag[3];

}

@end

@implementation ViewController

//释放全局变量

-(void)dealloc {

[table release];

//继承父类

[super dealloc];

}

- (void)viewDidLoad {

[super viewDidLoad];

//全局的UITableView

table = [[UITableView alloc] initWithFrame:[[UIScreen mainScreen] bounds] style:UITableViewStyleGrouped];

//UITableView代理

table.delegate = self;

table.dataSource = self;

//第二种注册方式记得创建继承于UITableViewCell的类下面创建cell时要注意类名称

[table registerClass:[customTableViewCell class] forCellReuseIdentifier:@"cell"];

//系统自动偏移属性

self.automaticallyAdjustsScrollViewInsets = NO;

//添加

[self.view addSubview:table];

}

//返回区

-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {

return 3;

}

//返回行

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

//默认折叠开关是关闭状态

if(flag[section] == NO) {

//关闭状态下行数为0

return 0;

} else {

//点击打开后行数为5

return 5;

}

}

//重用机制方法

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

//出列由于使用注册所以不需要判断if(!cell)

customTableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:@"cell"];

//行文本内容

cell.textLabel.text= [NSString stringWithFormat:@"%ld--%ld",indexPath.section,indexPath.row];

//行最右配件

cell.accessoryType =UITableViewCellAccessoryDisclosureIndicator;

return cell;

}

//区头名称可不写

-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {

return @"区头";

}

//区头加载视图

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

//创建视图不要写添加return view;这一句就是默认添加

UIView * view = [[[UIView alloc] initWithFrame:CGRectMake(0, 0, 44, 44)] autorelease];

//写button

UIButton * btn = [UIButton buttonWithType:UIButtonTypeCustom];

btn.frame = CGRectMake(0, 0, 44, 44);

//绑定方法要传参

[btn addTarget:self action:@selector(btnClick:) forControlEvents:UIControlEventTouchUpInside];

//设置tag值

btn.tag = section + 10 ;

[view addSubview:btn];

//[btn release];不写否则运行时系统会崩溃

//设置图片视图

UIImageView * imgView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"a"]];

imgView.frame = CGRectMake(0, 0, 44, 44);

[view addSubview:imgView];

[imgView release];

//设置图片视图的动画

if(flag[section] ==NO) {

imgView.transform = CGAffineTransformIdentity;

} else {

imgView.transform = CGAffineTransformMakeRotation(M_PI_2);

}

return view;

}

-(void)btnClick:(UIButton *)btn {

//检验测试用的输出可不写

NSLog(@"btnClick");

NSLog(@"%ld",btn.tag);

//点击取反按钮状态

flag[btn.tag- 10] = !flag[btn.tag- 10];

//检验测试用的输出可不写

NSLog(@"%ld",btn.tag);

//NSIndexSet:索引的集合其中的参数是想要刷新的区的集合

//用区创建一个集合集合的元素就是区号012

NSIndexSet * set = [NSIndexSet indexSetWithIndex:btn.tag- 10];

//行的动画

[table reloadSections:set withRowAnimation:UITableViewRowAnimationFade];

}

@end


UITableView的索引条索引

-(NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index {

return index;

}

//索引标题方法返回的是索引标题数组

-(NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView {

NSMutableArray * array = [NSMutableArray array];

for(int i = 0; i < 6; i ++) {

NSString * str = [NSString stringWithFormat:@"第%d区",i];

[array addObject:str];

}

return array;

}


UITableView的刷新

//刷新表格3种形式

//1.[table reloadData];全部刷新刷新整个表

//2.局部刷新Sections:要刷新的区索引的集合

NSIndexSet * set = [NSIndexSet indexSetWithIndex:btn.tag-100];

//局部刷新区(NSIndexSet *)sections要刷新的区索引的集合

[table reloadSections:set withRowAnimation:UITableViewRowAnimationFade];

//3.局部刷新行(row)

//    NSIndexPath * path = [NSIndexPath indexPathForRow:2 inSection:0];

//    NSArray * array = @[path];

//    [table reloadRowsAtIndexPaths:array withRowAnimation:UITableViewRowAnimationFade];


注册cellUITableView

//注册创建cell

//1.注册系统的cell类

//[UILabel class];

//[UIView class];

//[table registerClass:[UITableViewCell class] forCellReuseIdentifier:@"cell"];

//2.注册自定义类的

//[table registerClass:[customTableViewCell class] forCellReuseIdentifier:@"cell"];

//3.注册Xib  cell

[tableregisterNib:[UINibnibWithNibName:@"XibTableViewCell"bundle:nil]forCellReuseIdentifier:@"cell"];

注册cell的话不需要判断

if(!cell){

cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cell"];

}

UITableView

//UITableView:表格

UITableView * table = [[UITableViewalloc] initWithFrame:[[UIScreen mainScreen] bounds] style:UITableViewStylePlain];

table.backgroundColor = [UIColor orangeColor];

//UITableView代理

table.delegate = self;

//数据源代理data  

table.dataSource = self;

[self.view addSubview:table];

#pragma mark ====数据源代理

//返回多少行Section区参数区里有多少行

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

if(section ==0) {

return 6;

} else {

//返回值方法返回多少行

return 10;

}

}

//返回cell每一行单元格

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

//创建cell

//dequeue:队列

//返回cell的时候,先从重用队列中找带有重用标识的cell(可重用的cell)

UITableViewCell * cell1 = [tableView dequeueReusableCellWithIdentifier:@"cell"];

//如果重用队列里没有那么就去创建一个返回cell

if(!cell1) {

cell1 = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefaultreuseIdentifier:@"cell1"];

}

//indexPath二维坐标indexPath.section:区(没有设置的情况下,默认返回一个0区) indexPath.row:行

//默认44高度

//cell.textLabel.text = @"单元格";

cell1.textLabel.text= [NSString stringWithFormat:@"%d----%d",indexPath.section,indexPath.row];

returncell1;

}

//返回多少个区

-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{

return2;

}

//TableView代理方法返回行高

-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{

//设置各个区不等高

if(indexPath.section==0) {//0区

switch(indexPath.row) {

case0:

case1:

return100;

break;

case2:

case3:

return200;

break;

default:

return44;

break;

}

}else{//1区

return44;

}

}

//点击行触发的方法

-(void)tableView:(nonnullUITableView*)tableView didSelectRowAtIndexPath:(NSIndexPath*)indexPath {

//indexPath索引路径

NSLog(@"点击cell----%d区%d行",indexPath.section,indexPath.row);

}

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 201,924评论 5 474
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,781评论 2 378
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 148,813评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,264评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,273评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,383评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,800评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,482评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,673评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,497评论 2 318
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,545评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,240评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,802评论 3 304
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,866评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,101评论 1 258
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,673评论 2 348
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,245评论 2 341

推荐阅读更多精彩内容