iOS开发攻城狮的集散地程序员成长

iOS文档补完计划--UITableViewDataSource

2018-10-15  本文已影响13人  kirito_song

目录主要分为以下几个样式:
常用、会用、了解

目录


UITableViewDataSource

一个能够为UITableView提供展示要素的代理


配置TableView

将返回的Cell插入TableView的indexPath位置。(一旦需要展示cell)则必须实现且不能返回nil。

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

返回的对象通常是重用的cell。

返回该节有多少行内容(必须实现

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

返回一共有多少节内容需要展示

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

默认返回1

为系统默认样式的sectionHeader/sectionFooter设置文字

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

除了敲demo通常没啥用。你应该使用tableView:viewForHeaderInSection:进行自定义样式。


插入&&删除

编辑完成时调用

- (void)tableView:(UITableView *)tableView 
commitEditingStyle:(UITableViewCellEditingStyle)editingStyle 
forRowAtIndexPath:(NSIndexPath *)indexPath;

如果点击其他地方被取消、则不会被调用。

editingStyle是一个枚举、有三种可能的值

typedef NS_ENUM(NSInteger, UITableViewCellEditingStyle) {
    UITableViewCellEditingStyleNone,//没有编辑样式
    UITableViewCellEditingStyleDelete,//删除样式 (左边是红色减号)
    UITableViewCellEditingStyleInsert//插入样式  (左边是绿色加号)
};

当你进行了对应的操作(点击了绿色的添加或者红色的删除)、代理将会告知你并让你修改数据源以配合操作。

返回该位置的cell是否可以进入编辑状态

- (BOOL)tableView:(UITableView *)tableView 
canEditRowAtIndexPath:(NSIndexPath *)indexPath;

如果没有实现此方法、那么默认所有的cell都可以进入编辑状态。
这个编辑状态有两种意思:

  1. 通过[self.tableView setEditing:YES animated:YES];让所有cell进入
  2. 右滑

重新排序

让tableView支持拖动、需要以下条件

  1. 让tableView进入编辑状态
    也就是设置它的editing为YES

  2. 返回编辑模式
    也就是实现UITableViewDelegate中的tableview:editingStyleForRowAtIndexPath:方法,在里面返回UITableViewCellEditingStyleNone模式。如果不实现,默认返回的就是删除模式

3、实现tableView:moveRowAtIndexPath:toIndexPath方法
只要实现该方法,就能实现单元格的拖动排序,但只是实现了表面的排序,并没有修改真实地数据

4、在方法中完成数据模型的更新

是否可以将该cell拖动到指定位

- (BOOL)tableView:(UITableView *)tableView 
canMoveRowAtIndexPath:(NSIndexPath *)indexPath;

返回该单元格、是否可以被拖动。默认返回YES。

拖动完成时触发、让用户修改数据源

- (void)tableView:(UITableView *)tableView 
moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath 
      toIndexPath:(NSIndexPath *)destinationIndexPath;

如果不做修改、cell就仅仅是在当前展示上修改了位置。下次被提取或者刷新时会变回原来的顺序。


索引设置

返回索引数组

- (NSArray<NSString *> *)sectionIndexTitlesForTableView:(UITableView *)tableView;
  1. tablbView的style必须是UITableViewStylePlain
  2. 返回的数组将会悬浮在tableView右侧

点击索引后、将talbeView移动至哪个section处

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

支持数组越界


UITableViewDelegate

对页眉页脚、高度、选择、删除等操作进行支持。


配置Row

可以为指定的行设置高度

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

你可以rowHeight为所有的cell统一设置高度、相对性能较高。
而一旦实现heightForRowAtIndexPath方法、你就必须为每一个indexPath设置高度。
返回UITableViewAutomaticDimension则由系统自适应计算。

返回指定位置的预估行高

- (CGFloat)tableView:(UITableView *)tableView 
estimatedHeightForRowAtIndexPath:(NSIndexPath *)indexPath;
  1. 如果没有预估、可以返回UITableViewAutomaticDimension
  2. 使用此功能可以将某些计算、从加载时移动到滚动时进行。以提高性能。

返回缩进级别

- (NSInteger)tableView:(UITableView *)tableView 
indentationLevelForRowAtIndexPath:(NSIndexPath *)indexPath;

并不知道有什么地方必须这样用


某个indexPath的cell将要被绘制(展示)

- (void)tableView:(UITableView *)tableView 
  willDisplayCell:(UITableViewCell *)cell 
forRowAtIndexPath:(NSIndexPath *)indexPath;

由于cellForRow实际上会预创建一些cell、所以cell内部的赋值可以放在这里、以提升一些性能。
但是最显著的用途还是对刚展示出来的cell做一些动画吧。比如从右侧一个一个滑入之类。

cell是否支持iOS11 新特性 Drag and Drop (默认YES)

- (BOOL)tableView:(UITableView *)tableView 
shouldSpringLoadRowAtIndexPath:(NSIndexPath *)indexPath 
      withContext:(id<UISpringLoadedInteractionContext>)context;

扩展按钮

自定义左滑事件

- (NSArray<UITableViewRowAction *> *)tableView:(UITableView *)tableView 
                  editActionsForRowAtIndexPath:(NSIndexPath *)indexPath;

返回一个由UITableViewRowAction组成的数组。
他们会响应用对应的点击交互。
如果你不实现这个代理、右滑时将会展示默认按钮。

当cell的扩展视图被点击时调用

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

这里的扩展视图指的是cell.accessoryType的视图。如下图所示:


选择管理

cell被点击时引起的一系列方法调用

需要注意的是即使cell.selectionStyle = UITableViewCellSelectionStyleNone;使得cell跟随点击而改变背景色、以下方法也会被调用。

将要被选定时触发

- (NSIndexPath *)tableView:(UITableView *)tableView 
  willSelectRowAtIndexPath:(NSIndexPath *)indexPath;

允许你通过返回一个新的NSIndexPath、来修改将要被选择的cell。
编辑状态下不会触发此方法

cell被选定时触发

- (void)tableView:(UITableView *)tableView 
didSelectRowAtIndexPath:(NSIndexPath *)indexPath;

编辑状态下不会触发此方法

选中状态被取消时触发

- (NSIndexPath *)tableView:(UITableView *)tableView 
willDeselectRowAtIndexPath:(NSIndexPath *)indexPath;

如果你返回nil、将不会被取消。允许从定向

cell选中被取消时触发

- (void)tableView:(UITableView *)tableView 
didDeselectRowAtIndexPath:(NSIndexPath *)indexPath;

页眉和页脚

//返回页眉和页脚
- (nullable UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section; 
- (nullable UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section; 

//返回页眉和页脚的高度
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section;
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section;

//页眉和页脚将要展示
- (void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section NS_AVAILABLE_IOS(6_0);
- (void)tableView:(UITableView *)tableView willDisplayFooterView:(UIView *)view forSection:(NSInteger)section NS_AVAILABLE_IOS(6_0);

//预估页眉和页脚高度
- (CGFloat)tableView:(UITableView *)tableView estimatedHeightForHeaderInSection:(NSInteger)section NS_AVAILABLE_IOS(7_0);
- (CGFloat)tableView:(UITableView *)tableView estimatedHeightForFooterInSection:(NSInteger)section NS_AVAILABLE_IOS(7_0);

以上的方法通过方法名基本都能理解其用处。

这里需要注意

iOS11之后、系统为我们设置了预估行高。如果只实现了header高度为0.1f、而没有返回具体的view会引起留白的bug。《详见》


编辑表单

要让表单支持左滑

你必须实现commitEditingStyle方法、以告诉tableView左滑操作是由价值的

表单即将进入编辑模式(左滑)

- (void)tableView:(UITableView *)tableView 
willBeginEditingRowAtIndexPath:(NSIndexPath *)indexPath;

已经离开编辑模式

- (void)tableView:(UITableView *)tableView 
didEndEditingRowAtIndexPath:(NSIndexPath *)indexPath;

编辑接触(并不限于取消)触发、并不会记录你执行了哪种操作。
所以、你应该在tableView:commitEditingStyle:forRowAtIndexPath:而不是这里实现相关编辑操作。

决定左滑返回哪种附加视图

- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView 
           editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath;

默认返回UITableViewCellEditingStyleDelete

typedef NS_ENUM(NSInteger, UITableViewCellEditingStyle) {
    UITableViewCellEditingStyleNone,//没有编辑样式
    UITableViewCellEditingStyleDelete,//删除样式 (左边是红色减号)
    UITableViewCellEditingStyleInsert//插入样式  (左边是绿色加号)
};

更改UITableViewCellEditingStyleDelete下的文字

- (NSString *)tableView:(UITableView *)tableView 
titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath;

setEditing以及左滑时同样有效。

进入编辑模式时、cell背景是否缩进

- (BOOL)tableView:(UITableView *)tableView 
shouldIndentWhileEditingRowAtIndexPath:(NSIndexPath *)indexPath;

通知委托在编辑模式下是否需要对表视图指定行进行缩进,NO为关闭缩进,这个方法可以用来去掉move时row前面的空白。


重新排序表单

在移动cell的时候会多次调用

- (NSIndexPath *)tableView:(UITableView *)tableView 
targetIndexPathForMoveFromRowAtIndexPath:(NSIndexPath *)sourceIndexPath 
       toProposedIndexPath:(NSIndexPath *)proposedDestinationIndexPath;

cell的初始位置以及目标。允许对目标位置重定向。
移动中的留白动画、以及结果都会受此影响。


移动出可见范围

cell/sectionHeaderView/sectionFooterView的消失

//cell已经移动出可见范围
- (void)tableView:(UITableView *)tableView 
didEndDisplayingCell:(UITableViewCell *)cell 
forRowAtIndexPath:(NSIndexPath *)indexPath;

//sectionHeaderView已经移动出可见范围
- (void)tableView:(UITableView *)tableView 
didEndDisplayingHeaderView:(UIView *)view 
       forSection:(NSInteger)section;

//sectionFooterView已经移动出可见范围
- (void)tableView:(UITableView *)tableView 
didEndDisplayingFooterView:(UIView *)view 
       forSection:(NSInteger)section;

MENU菜单

如果想让cell支持menu菜单的呼出、必须将以下三个方法全部实现

长按后是否显示编辑菜单

- (BOOL)tableView:(UITableView *)tableView 
shouldShowMenuForRowAtIndexPath:(NSIndexPath *)indexPath;

返回该cell支持那种action

- (BOOL)tableView:(UITableView *)tableView 
 canPerformAction:(SEL)action 
forRowAtIndexPath:(NSIndexPath *)indexPath 
       withSender:(id)sender;

这个规则你可以参考iOS文档补完计划--UIResponder中关于canPerformAction:withSender:方法的解释。

让代理者对menu操作进行响应

- (void)tableView:(UITableView *)tableView 
    performAction:(SEL)action 
forRowAtIndexPath:(NSIndexPath *)indexPath 
       withSender:(id)sender;

高亮管理

高亮权限、高亮、取消高领

//点击时是否高亮。默认YES
- (BOOL)tableView:(UITableView *)tableView 
shouldHighlightRowAtIndexPath:(NSIndexPath *)indexPath;

//已经高亮
- (void)tableView:(UITableView *)tableView 
didHighlightRowAtIndexPath:(NSIndexPath *)indexPath;


//不再高亮
- (void)tableView:(UITableView *)tableView 
didUnhighlightRowAtIndexPath:(NSIndexPath *)indexPath;

最后

本文主要是自己的学习与总结。如果文内存在纰漏、万望留言斧正。如果愿意补充以及不吝赐教小弟会更加感激。


参考资料

官方文档-UITableView
iOS UITableView 的 Plain和Grouped样式的区别
iOS_UITableView 编辑(cell的插入, 删除, 移动)
ios tableView那些事 (五) 给tableview设置缩进级别
关于UITableView委托方法的功能(by atany)

上一篇下一篇

猜你喜欢

热点阅读