gpt4 book ai didi

objective-c - 更好的性能设置 backgroundView : willDisplayCell or init?

转载 作者:行者123 更新时间:2023-11-28 19:23:36 24 4
gpt4 key购买 nike

我只是好奇,设置 UITableViewCell 的自定义 backgroundView 有什么更好的性能?

选项0) UITableViewCell 初始化方法的子类

@implementation CustomCell
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier andReleases:(NSArray*)releases {

self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
self.backgroundView = [[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"tablecell.png"]] autorelease];
}
return self;
}

选项 1) willDisplayCell 委托(delegate)方法

- (void) tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
cell.backgroundView = [[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"tablecell.png"]] autorelease];
}

最佳答案

在这种情况下,选项 0 更好,因为您在创建单元格时设置一次背景,而 willDisplayCell 将在您每次显示单元格时设置它。由于您将重用 UITableViewCells,因此创建单元格的时间会比显示单元格少。

但是要避免过早的优化,只有当你觉得性能不够好时才进行优化。

关于objective-c - 更好的性能设置 backgroundView : willDisplayCell or init?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6350139/

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