IOS开发。UITTableView

UITableView是iOS系统中最重要的视图, 在常用的APP中随处可见。

UITableView

UITableView继承于UIScrollView,可以滚动。UITableView的每条数据对应的单元格叫做Cell,是UITableView的1个对象,继承于UIView。

UITableView可以分区显示, 每一个分区称为section,每一行称为row, 编号都从0开始。

系统提供了一个专门的类来整合section和row,叫做NSIndexPath。

UITableView*tableView = [[UITableViewalloc]initWithFrame:self.view.boundsstyle:UITableViewStylePlain];

[self.viewaddSubview:tableView];

[tableView release];

UITableView显示的相关属性

rowHeight     行高

separatarStyle   分隔线样式

separatarColor  分隔线颜色

tableHeaderView   UITableView的置顶视图

tableFooterView    UITableView置底视图

欲使用tableview先遵守协议
<UITableViewDataSource,UITableViewDelegate>
UITableView *tv = [[UITableView alloc]initWithFrame:CGRectZero type:0];

设置表视图的数据源代理
tv.dataSource = self;
PS:也可以单独设置数据源,那样的话只需要在单独设置的数据源里编写好3问等等。。。直接代理就可以
设置表视图的代理
tv.delegate = self;
这3步是必须的。
关于tableViewCell的一些相关设置方法。
如果是用XIB创建的话那么配合TableViewController就不需要以上三步

问1:一共有几个分区(这个可以不设置就默认1。)
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{}

问2:每个分区多少行
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{}

问3:每行什么样,就是每一行要做什么
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{}

答1:选中某行后,如何响应
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{}
当 设置系统版的辅助视图格式
        cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton
只有点击圆圈i时才响应

-(void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath

答:每行多高
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath

某一行是否可以编辑
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath

某一行是哪种编辑状态(以下是删除状态)
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{    return UITableViewCellEditingStyleDelete;
}
删除按钮的名称
- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath

当编辑操作被触发时,做什么(人性化一点  因为删除操作不可恢复,要弹出警告,创建 UIAlertController)
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{}

删除Cell,第一个参数是数组。第二个参设置动画。  一般会先删除该行数据模型中的数据
 [self.XXX removeObjectAtIndex:indexPath.row];
 [tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];

设置分区头    尾的话就改foot   如果需要加图片或者其他属性就直接在tableview属性的 .tableHeaderView添加
-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section

//问1:改行是否可以移动
-(BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath

答1:移动后做什么
-(void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath
注册Cell,因为Cell带有XIB的话,则须使用Nib方式注册!

特别注意:如果用的是自定义Cell,那么必须用自定义的来开辟空间。

第一种注册方法:
    1.先尝试着去队列中取单元格
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];
    2.如果没有取到,再新建
    if (cell == nil) {        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Cell"];
    }
第二种:
                 PS: 单元格重用。如果单元格数量多 超出屏幕范围,那么用重用的话会提高效率
     为了让tableView知道自动创建的单元格什么样
    提前将单元格类注册一下
    【xxx class】返回该类型的描述信息

    [self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"Cell1"];
     UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell1"forIndexPath:indexPath];

Cell的属性:

accessoryType  用于设置风格:
Disclosure Indicator:带>    Detail Disclosure:带圆圈i和>  Checkmark:带钩  Detail:只带圆圈i。

动态获取Cell的高度

获取cell动态高度的步骤

  1. 在heightForRowAtIndexPath代理方法中这样设置,之后再去更改cell的frame即可。
-(CGFloat)tableView:(UITableView*)tableView heightForRowAtIndexPath:(NSIndexPath*)indexPath {

LFTableViewCell*cell = (LFTableViewCell*)[selftableView:tableViewcellForRowAtIndexPath:indexPath];

return cell.frame.size.height;

}

2.在cellForRowAtIndexPath中设置cell的frame. 其中self.originCellMaxY是模板cell中最底部控件的最大y值([tableViewdequeueReusableCellWithIdentifier:cellReuseID]获取的cell,不然cell重用的时候会出问题)

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

LFTableViewCell*cell = [tableViewdequeueReusableCellWithIdentifier:cellReuseID];

cell.titleLabel.text=self.allContent[indexPath.row];

// 获取不确定文字的高度

NSString*content =self.allContent[indexPath.row];

CGFloattestHeight = [selfsizeWithFont:[UIFontsystemFontOfSize:14.0]maxW:cell.frame.size.widthwithContent:content] +10;

// 重新设置cell的frame.

CGRectframe = cell.frame;

frame.size.height= testHeight +self.originCellMaxY;

cell.frame= frame;

return cell;

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

推荐阅读更多精彩内容