我在使用动态值时遇到了一些性能问题heightForRowAtIndexPath:
(我知道这是这种方法,因为如果我设置静态值,响应能力会大大提高)。我的表格包含大约 3000 个单元格。
我理解为什么使用动态值时性能会受到影响(主要是因为方法中的计算必须对表中的每个单元格执行一次才能显示数据),但我不知道如何使其更有效.
在我遇到的许多类似问题中,建议的解决方案是使用NSString
'sizeWithFont
方法heightForRowAtIndexPath:
来加快速度。我目前这样做,但表仍然需要大约 1.5 秒来加载(并重新加载,这有点频繁)。这太长了,我需要优化它。
我目前正在使用的代码(至少它的本质)如下:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell;
UILabel *label = nil;
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
label = [[UILabel alloc] initWithFrame:CGRectZero];
// set up label..
[[cell contentView] addSubview:label];
}
NSDictionary *dict = alphabetDict; //dictionary of alphabet letters (A-Z). each key contains an NSArray as its object
CGFloat rightMargin = 50.f; //padding for the tableview's index titles
NSString *key = [[[dict allKeys] sortedArrayUsingSelector:@selector(localizedCaseInsensitiveCompare:)] objectAtIndex:indexPath.section];
NSArray *array = [dict objectForKey:key];
NSString *cellText = [array objectAtIndex:indexPath.row];
//TABLE_WIDTH is 268.f, CELL_MARGIN is 14.f
CGSize constraintSize = CGSizeMake(TABLE_WIDTH - (CELL_MARGIN * 2) - rightMargin, 20000.0f);
CGSize labelSize = [cellText sizeWithFont:[UIFont systemFontOfSize:17] constrainedToSize:constraintSize lineBreakMode:UILineBreakModeWordWrap];
[label setFrame:CGRectMake(CELL_MARGIN, CELL_MARGIN, TABLE_WIDTH - (CELL_MARGIN * 2) - rightMargin, labelSize.height)];
[label setText:cellText];
return cell;
}
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
//TODO make this faster
NSDictionary *dict = alphabetDict;
CGFloat rightMargin = 50.f;
NSString *key = [[[dict allKeys] sortedArrayUsingSelector:@selector(localizedCaseInsensitiveCompare:)] objectAtIndex:indexPath.section];
NSArray *array = [dict objectForKey:key];
NSString *cellText = [array objectAtIndex:indexPath.row];
CGSize constraintSize = CGSizeMake(TABLE_WIDTH - (CELL_MARGIN * 2) - rightMargin, 20000.0f);
CGSize labelSize = [cellText sizeWithFont:[UIFont systemFontOfSize:17] constrainedToSize:constraintSize lineBreakMode:UILineBreakModeWordWrap];
return labelSize.height + (CELL_MARGIN * 2) + 16.f;
}
有人可以指出我正确的方向以进一步简化此代码吗?谢谢!