UITableView 详解

UITableView 是 iOS 开发中必不可少的一个控件,基本上每一个项目都会有多个地方会用到。详细的了解UITableView的特性,对我们优雅的使用它有莫大的帮助。

基本 API 解释以及用法数据源 UITableViewDataSource
代理 UITableViewDelegate
UITableViewCell
一些常用操作

UITableView 进阶性能优化
优雅的使用 UITableView 之链式编程

UITableView 相关的开源库MJRefresh 上拉下拉刷新组件
UITableView+FDTemplateLayoutCell 自动计算行高
SWTableViewCell Cell左右滑动操作
folding-cell 炫酷的 Cell 动画效果

基本 API 解释以及用法
数据源 UITableViewDataSource
// 返回分组数 -(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView;// 返回每组行数 -(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section;// 返回每行的单元格 -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;// 返回每组头标题-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section;// 返回每组尾部标题-(NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section;// 返回 Cell 是否在滑动时是否可以编辑-(BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath;// 返回 Cell 是否可以移动-(BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath;// TableView 右侧建立一个索引表需要的数组内容-(NSArray<NSString *> *)sectionIndexTitlesForTableView:(UITableView *)tableView; // 对 Cell 编辑结束后的回调-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath;// 对 Cell 移动结束后的回调-(void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath;

代理 UITableViewDelegate自定义显示效果
// Cell 即将显示,可用于自定义 Cell 显示的动画效果-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath;// UITableView 的 HeaderView 即将显示,可用于自定义 HeaderView 显示的动画效果-(void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section;// UITableView 的 FooterView 即将显示,可用于自定义 FooterView 显示的动画效果-(void)tableView:(UITableView *)tableView willDisplayFooterView:(UIView *)view forSection:(NSInteger)section;// Cell 完成显示-(void)tableView:(UITableView *)tableView didEndDisplayingCell:(UITableViewCell )cell forRowAtIndexPath:(NSIndexPath)indexPath;// HeaderView 完成显示-(void)tableView:(UITableView *)tableView didEndDisplayingHeaderView:(UIView *)view forSection:(NSInteger)section NS_AVAILABLE_IOS(6_0);// FooterView 完成显示-(void)tableView:(UITableView *)tableView didEndDisplayingFooterView:(UIView *)view forSection:(NSInteger)section;

高度设置
// 返回每个 Cell 的高度-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath;// 返回每个 Section 的 HeaderView 高度-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section;// 返回每个 Section FooterView 的高度-(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section;// 自动计算 Cell 高度(iOS7.0 以后增加的,返回一个粗略值,系统会自动计算)-(CGFloat)tableView:(UITableView *)tableView estimatedHeightForRowAtIndexPath:(NSIndexPath *)indexPath;// 自动计算 Section 的 HeaderView 高度(iOS7.0 以后增加的)-(CGFloat)tableView:(UITableView *)tableView estimatedHeightForHeaderInSection:(NSInteger)section;// 自动计算 Section 的 FooterView 高度(iOS7.0 以后增加的)-(CGFloat)tableView:(UITableView *)tableView estimatedHeightForFooterInSection:(NSInteger)section;

Section Header and Footer
// 返回 Section 自定义的 HeaderView-(nullable UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section; // 返回 Section 自定义的 FooterView-(nullable UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section;

Section 操作
// 返回当前选中的 Row 是否高亮,一般在选择的时候才高亮-(BOOL)tableView:(UITableView *)tableView shouldHighlightRowAtIndexPath:(NSIndexPath *)indexPath;-(void)tableView:(UITableView *)tableView didHighlightRowAtIndexPath:(NSIndexPath *)indexPath;-(void)tableView:(UITableView *)tableView didUnhighlightRowAtIndexPath:(NSIndexPath *)indexPath;// Cell 被选中的回调-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath;

Editing
// 返回 Cell 编辑类型-(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath;// 怎样编辑 Cell (iOS8.0 使用)-(NSArray<UITableViewRowAction *> *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath;// 设置进入编辑状态时,Cell不会缩进-(BOOL)tableView:(UITableView *)tableView shouldIndentWhileEditingRowAtIndexPath:(NSIndexPath *)indexPath;// 开始编辑-(void)tableView:(UITableView *)tableView willBeginEditingRowAtIndexPath:(NSIndexPath *)indexPath __TVOS_PROHIBITED;//结束编辑-(void)tableView:(UITableView *)tableView didEndEditingRowAtIndexPath:(nullable NSIndexPath *)indexPath __TVOS_PROHIBITED;

iOS9.0 新特征———焦点
//(一些 iOS9.0 的新特征)// 返回能否获得焦点-(BOOL)tableView:(UITableView *)tableView canFocusRowAtIndexPath:(NSIndexPath *)indexPath NS_AVAILABLE_IOS(9_0);// 返回是否将要更新焦点-(BOOL)tableView:(UITableView *)tableView shouldUpdateFocusInContext:(UITableViewFocusUpdateContext *)context NS_AVAILABLE_IOS(9_0);// 已经更新焦点时调用-(void)tableView:(UITableView *)tableView didUpdateFocusInContext:(UITableViewFocusUpdateContext *)context withAnimationCoordinator:(UIFocusAnimationCoordinator *)coordinator NS_AVAILABLE_IOS(9_0);// 返回上一个焦点的indexPath-(nullable NSIndexPath *)indexPathForPreferredFocusedViewInTableView:(UITableView *)tableView NS_AVAILABLE_IOS(9_0);

其他
// 单元格上的右指向按钮的响应方法回调-(void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath;// 允许指定行移动到目标行-(NSIndexPath *)tableView:(UITableView *)tableView targetIndexPathForMoveFromRowAtIndexPath:(NSIndexPath *)sourceIndexPath toProposedIndexPath:(NSIndexPath *)proposedDestinationIndexPath;// 缩进-(NSInteger)tableView:(UITableView *)tableView indentationLevelForRowAtIndexPath:(NSIndexPath *)indexPath;

一些使用示例
//设置右滑编辑时出现的动作-(NSArray *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath { UITableViewRowAction *topRowAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@"置顶" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) { NSLog(@"1111"); }]; topRowAction.backgroundColor = [UIColor blueColor]; UITableViewRowAction *deleteRowAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@"删除" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) { NSLog(@"2222"); }]; deleteRowAction.backgroundColor =[UIColor redColor]; return @[topRowAction, deleteRowAction];}

UITableViewCell3.1. 原生 UITableViewCell
UITableViewCell 自带的四种格式
typedef NS_ENUM(NSInteger, UITableViewCellStyle) { UITableViewCellStyleDefault, UITableViewCellStyleValue1, UITableViewCellStyleValue2, UITableViewCellStyleSubtitle};

60019CFD-0AE9-4509-83BB-AED61B497E0C.png

UITableViewCell右侧的 accessoryView 可以显示不同的图标,在iOS中称之为访问器,点击可以触发不同的事件,可以通过 UITableViewCellAccessoryType来设置。直接设置 accessoryView可以自定义
typedef NS_ENUM(NSInteger, UITableViewCellAccessoryType) { UITableViewCellAccessoryNone, // 不显示任何图标 UITableViewCellAccessoryDisclosureIndicator, // 跳转指示图标 UITableViewCellAccessoryDetailDisclosureButton, // 内容详情图标和跳转指示图标 UITableViewCellAccessoryCheckmark, // 勾选图标 UITableViewCellAccessoryDetailButton // 内容详情图标};

设置 UITableViewCell 选择时的背景颜色
cell.selectedBackgroundView = [[UIView alloc] initWithFrame:cell.frame]; cell.selectedBackgroundView.backgroundColor = [UIColor xxxxxx];

设置 UITableViewCell 选择时的背景
cell.selectedBackgroundView = [[UIView alloc] initWithFrame:cell.frame]; cell.selectedBackgroundView.backgroundColor = [UIColor xxxxxx];

3.2. 自定义 UITableViewCell

一些常用操作

UITableView 进阶
性能优化
关于 UITableView 的优化,网上已经有非常多的大神做出了总结,这里没有什么好说的。推荐来自优酷的ibireme大神写的这篇关于优化的文章。这估计算是比较终极的优化方案了。界面流畅度基本可以保持50 ~ 60FPS。http://blog.ibireme.com/2015/11/12/smooth_user_interfaces_for_ios/另外,如果 Cell 的复杂度不是特别高,但高度又是不确定的。推荐使用百度团队开源的 UITableView+FDTemplateLayoutCell ,自动计算及缓存 Cell 的高度,在加快开发进度的同时,也能确保不错的流畅度。

1.1. 确保重用 Cell1.2. 尽量减少 Cell 的视图层级,并且少用或不用透明的视图。避免离屏渲染,比如同时使用
view.layer.masksToBounds = YES; view.layer.cornerRadius = 20.0;

1.3. 提前计算并缓存 Cell 的高度
// 在这里返回提前计算好的高度,效率会明显快很多。-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath;

1.4. 在滑动的时候按需加载关于这一点,可以看一下 VVeboTableViewDemo 的实践。1.5. 异步绘制 Cell1.6. 尽量不在 cellForRowAtIndexPath 方法中做过多业务处理1.7. 减少使用 reloadData, 尽量使用下面方法来刷新列表。
//刷新指定的分组和行。-(void)reloadRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation NS_AVAILABLE_IOS(3_0);//刷新指定的分组。-(void)reloadSections:(NSIndexSet *)sections withRowAnimation:(UITableViewRowAnimation)animation NS_AVAILABLE_IOS(3_0);//删除时刷新指定的行数据。-(void)deleteRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation;//添加时刷新指定的行数据。-(void)insertRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation;

优雅的使用 UITableView 之链式编程

UITableView 相关的开源库
MJRefresh 上拉下拉刷新组件
UITableView+FDTemplateLayoutCell 自动计算行高
SWTableViewCell Cell左右滑动操作
folding-cell 炫酷的 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

推荐阅读更多精彩内容