我有UITableView
多个UILabels
。问题是,当我从服务器接收数据时,这些单元格中的文本会动态更改。加载视图控制器时它工作正常。但是当我滚动时,单元格的高度不会更新,因为heightForRowAtIndexPath
只被调用一次。
以下是截图:
正如我在截图中所示,问题标签缩小了尺寸,导致了间隙(箭头所示)。
这是我的cellForRowAtIndexPath
:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *cellIndentifier = @"CustomCell";
CustomCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIndentifier];
if (cell == nil)
{
cell = [[CustomCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIndentifier];
}
cell.question.autoDetectLinks = YES;
// Used to populate cell from NSDictionary
[self setDataToCell:cell AtIndexPath:indexPath];
return cell;
}
这是我的自定义单元格layoutSubviews
:
- (void) layoutSubviews
{
CGRect frame = self.question.frame;
frame.size.width = 277.0f; //you need to adjust this value
self.question.frame = frame;
self.question.numberOfLines = 2;
[self.question sizeToFit];
// Place time below question
CGRect timeFrame = self.time.frame;
timeFrame.origin.y = self.question.frame.origin.y + self.question.frame.size.height + 5;
self.time.frame = timeFrame;
[self.time sizeToFit];
}
为了解决这种情况,我打电话给
[self.tableView beginUpdates];
[self.tableView reloadRowsAtIndexPaths:@[_tableIndexPath] withRowAnimation:UITableViewRowAnimationNone];
[self.tableView endUpdates];
- (void) scrollViewDidScroll:(UIScrollView *)scrollView
中的
这解决了我的问题,但是在将动画设置为UITableViewRowAnimationNone
之后,降低了性能并且元素在建立之前跳了起来。有没有更好的方法呢?我应该在其他地方拨打reloadRowsAtIndexPaths
吗?
感谢。