gpt4 book ai didi

iPhone - 什么是重用标识符(UITableViewCell)?

转载 作者:IT老高 更新时间:2023-10-28 11:34:59 27 4
gpt4 key购买 nike

来自官方文档:

The reuse identifier is associated with a UITableViewCell object that the table-view’s delegate creates with the intent to reuse it as the basis (for performance reasons) for multiple rows of a table view. It is assigned to the cell object in initWithFrame:reuseIdentifier: and cannot be changed thereafter. A UITableView object maintains a queue (or list) of the currently reusable cells, each with its own reuse identifier, and makes them available to the delegate in the dequeueReusableCellWithIdentifier: method.

http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UITableViewCell_Class/Reference/Reference.html#//apple_ref/occ/instp/UITableViewCell/reuseIdentifier

我不明白这一点。好吧,我认为,我理解基本思想,即创建 UITableViewCells,并尝试尽可能多地重用,而不是创建新的(或类似的东西)。但是究竟是什么决定了一个细胞是否可重复使用呢?如果我有两个相同(视觉上)的单元格,但文本不同(我想它们并不完全相同),它们是否可以具有相同的标识符?或者他们应该有不同的?或者在什么情况下你应该使用不同的标识符?

任何人都可以澄清或链接到它所在的地方吗?

最佳答案

好的,我认为这就是它的工作原理:

对 tableView 使用 dequeueReusableCellWithIdentifier 可以大大加快速度。无需实例化很多单元格,您只需实例化尽可能多的单元格,即尽可能多的可见单元格(这是自动处理的)。如果滚动到列表中的某个区域,其中有“单元格”还没有获得视觉表示,那么您可以重复使用已经存在的单元格,而不是实例化新的单元格。

你可以自己试试这个:

static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

if (cell == nil)
{
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
NSLog(@"new one");
}
else
{
NSLog(@"old one");
}

请记住,您只希望 dequeueReusableCellWithIdentifier 返回一个适用的单元格。因此,如果要重复使用某个单元格,请确保它适合该情况。这就是重用标识符的用途。通常,您只需要一个。但是可能有一个列表使用了几种不同类型的单元格,在这种情况下,您必须通过提供不同的重用标识符来将它们分开。否则,您最终可能会得到一个您将其视为其他类型单元格的单元格(例如,UITableView 单元格而不是您想要的自定义单元格)。

所以基本上,据我了解,对不同种类的单元格使用不同的重用标识符,其中种类表示类。如果你只使用标准单元格,你可能只需要一个reuseIdentifier。

这种设计模式被称为 object pooling .

关于iPhone - 什么是重用标识符(UITableViewCell)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2152180/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com