为什么注册了 Cell 还需要传入 IndexPath

UITableViewCell 注册探究

创建 UITableViewCell 的方式有两种:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewCell *cell = [tableView dequeueReuseableCellWithIdentifier:@"cell"];
    if (!cell) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cell"];
    }
    return cell;
}

// 注册
[tableView registerClass:[MyTableViewCell class] forCellReuseIdentifier:@"cell"];


- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewCell *cell =[tableView dequeueReusableCellWithIdentifier:@"cell" forIndexPath:indexPath];
    return cell;
}

本文探讨为何注册的 Cell 在获取 cell 对象时需要传入 NSIndexPath。

猜测

先看看官方文档

- dequeueReusableCellWithIdentifier:forIndexPath:

Description
Returns a reusable table-view cell object for the specified reuse identifier and adds it to the table.

For performance reasons, a table view’��s data source should generally reuse UITableViewCell objects when it assigns cells to rows in its tableView:cellForRowAtIndexPath: method. A table view maintains a queue or list of UITableViewCell objects that the data source has marked for reuse. Call this method from your data source object when asked to provide a new cell for the table view. This method dequeues an existing cell if one is available, or creates a new one based on the class or nib file you previously registered, and adds it to the table.

Important
You must register a class or nib file using the registerNib:forCellReuseIdentifier: or registerClass:forCellReuseIdentifier: method before calling this method.
If you registered a class for the specified identifier and a new cell must be created, this method initializes the cell by calling its initWithStyle:reuseIdentifier: method. For nib-based cells, this method loads the cell object from the provided nib file. If an existing cell was available for reuse, this method calls the cell’s prepareForReuse method instead.

Parameters
identifier :A string identifying the cell object to be reused. This parameter must not be nil.
indexPath: The index path specifying the location of the cell. The data source receives this information when it is asked for the cell and should just pass it along. This method uses the index path to perform additional configuration based on the cell’s position in the table view.

Returns
A UITableViewCell object with the associated reuse identifier. This method always returns a valid cell.

SDKs iOS 6.0+, tvOS 9.0+
Declared In UIKit

官方文档对 indexPath 参数说明大致如下:

indexPath: index path 说明这个 cell 的位置。数据源会在被要求返回一个 cell 的方法里获取到这个 index path 对象,数据源应该将这个 index path 直接传入本方法中。本方法或根据传入的 index path 确定 cell 将会显示在 table view 中的位置,从而做一些基于这个位置的附加的配置操作

对于头文件,也有如下解释:

newer dequeue method guarantees a cell is returned and resized properly, assuming identifier is registered
返回之前会经过 resize

所以可以猜测:

  1. 只是为了新增一个参数来区分新旧 API,从而区分是否要自动创建一个 cell 对象
    这个猜测有点强求,因为如果开发者希望自动创建时,会提前注册好 Class 或者 Nib,取得时候底层可以判断是否需要创建新的 cell;如果开发者不希望自动创建的话,就不会提前去注册,而方法返回一个 nil 出去,让数据源自己创建 cell 也很符合逻辑。所以 UIKit 是否需要一个新的参数来更改方法名,以达到区分 API 目的的猜想可能是假的。

  2. 传入 indexPath 时,table view 会自动的根据 index path 判断 这个 cell 将会显示在什么位置,同时会根据数据源来获取这个位置对应的 frame 信息。然后将 cell 的 frame 设置好后,返回给数据源使用。

验证

编写一个简单的 UITableViewController


- (void)viewDidLoad {
    [super viewDidLoad];
    UITableView *tableView = [[UITableView alloc] initWithFrame:self.view.bounds style:UITableViewStylePlain];
    tableView.dataSource = self;
    tableView.delegate = self;
    [self.view addSubview:tableView];
    
    [tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"cell"];
}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return 10;
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    return 44;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell" forIndexPath:indexPath];
    return cell;
}

添加断点 -[UITableView dequeueReusableCellWithIdentifier:forIndexPath:]

image.png

跑起来后断在断点处:

image.png

可以发现这个方法调用了 _dequeueReusableCellWithIdentifier:forIndexPath:usingPresentationValues: 方法来获取 cell。

继续断点:

image.png
image.png
image.png
image.png

大致可以了解到:

- (UITableViewCell *)_dequeueReusableCellWithIdentifier:(NSString *)identifier
    forIndexPath:(NSIndexPath *)indexPath
    usingPresentationValues:(id)values {
    
    // get cell with old method
    UITableViewCell *cell = [self dequeueReusableCellWithIdentifier:identifier];
    // ...
    
    // config with index path
    if ([self __shouldConfigureCellForDisplayDuringDequeueForIndexPath:indexPath]) {
        [self _configureCellForDisplay:cell forIndexPath:indexPath];
    }
}

所以可以看见,这个方法内部确实有用 index path 去做 config 的操作。具体 config 内容可以看 -[UITableView _configCellForDisplay:forIndexPath:]

image.png

可以看见一部分 layout 的代码,所以 UITableView 在拿到 indexPath 后,对 cell 做了 resize 和 layout 的操作。

下面来验证这个 resize 操作。UITableView 拿到 indexPath 给 cell 设置 frame,肯定需要 cell 的高度,而 cell 高度可以被 UITableView 定制,所以肯定会去 UITableViewController 调用 - tableView:heightForRowAtIndexPath: 的方法来得到这个 row 高。

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath] 方法打断点,观察调用栈:

image.png

果然在内部调用了获取行高的方法。所以猜想正确。

结论

数据源通过 -[UITableView dequeueReusableCellWithIdentifier:forIndexPath:] 传入的 index path,会被 UITableView 拿来取 cell 的渲染位置,然后赋值 size 并做 layout。

总的来说,知道这个结论对日常开发并没有什么多大的用处。。。。

但是知道了如何去分析系统行为,可以为以后的开发带来一点帮助。

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

推荐阅读更多精彩内容