uitableviewcell动态高度如何优化性能?
我目前的方法是使用缓存。因为 heightForRowAtIndexPath 先于 cellForRowAtIndexPath 调用。那么在 heightForRowAtIndexPath 的时候初始化 cell,缓存起来。
cellForRowAtIndexPath 的时候,从缓存读取。
现在问题来了。。。。。
因为cell自身的复用机制所致,滚动的时候,出现一些问题。
如果彻底干掉cell自身飞复用机制,那么每次渲染初始化cell,太耗时间和内存了。
怎么都不行,如何是好?
我的代码如下:
objc
//计算cell的高度,这里初始化cell了。那么缓存起来。 - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { FeedCell *cell = [self getCellFromIndexPath:indexPath]; return cell.frame.size.height; } //把Cell复用逻辑写在一个方法里 - (FeedCell*)getCellFromIndexPath:(NSIndexPath*)indexPath { Post *post = [self.dataSource objectAtIndex:indexPath.row]; NSString *key = [NSString stringWithFormat:@"%@%d_%d%d", CellIdentifier, post.pid, indexPath.row, indexPath.section]; FeedCell *cell = [self.cellCache objectForKey:key];//看看是否有cell的缓存。 if (!cell) { //系统自身的复用机制。 cell = [self.feedTableView dequeueReusableCellWithIdentifier:CellIdentifier]; if (!cell) { cell = [[FeedCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier]; } [cell setAutoFrame]; cell.tag = post.pid; [self.cellCache setObject:cell forKey:key]; } return cell; } //因为计算cell高度的时候已经初始化了。那么这里从缓存读取。 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ return [self getCellFromIndexPath:indexPath]; }
编辑器对大片代码没法高亮,我反复折腾很久,代码排版不尽人意。
Answers
这确实是个很常见的问题。我目前见到有两种解决方法:
1. 有些方法会缓存frame(包括各个子view的frame)而不是缓存cell。这里有一篇例子:
http://www.cnphp6.com/archives/67108
2. 如果不需支持iOS 7以下的话,可以考虑用Auto Layout。这里有一篇很好的答案:
http://stackoverflow.com/questions/18746929/using-auto-layout-in-uitableview-for-dynamic-cell-layouts-variable-row-heights
如果彻底干掉cell自身复用机制,那么每次渲染初始化cell,太耗时间和内存了。
看了下你的代码,觉得既然已经写成这样了,想少修改点,可以考虑把系统的cell复用干掉;如果在各个设备上滚动不卡顿,就可以采用。因为既然你已经把cell缓存起来了,干掉系统的复用并 不会更 耗内存。当然如果缓存策略是从不释放,而cell个数可能无限多的话,这样做是不可取的。