在滚动时调整元素和UITableView的高度

时间:2013-12-17 08:14:03

标签: ios objective-c uitableview uilabel

我有UITableView多个UILabels。问题是,当我从服务器接收数据时,这些单元格中的文本会动态更改。加载视图控制器时它工作正常。但是当我滚动时,单元格的高度不会更新,因为heightForRowAtIndexPath只被调用一次。

以下是截图:

Before Scrolling

After Scrolling

正如我在截图中所示,问题标签缩小了尺寸,导致了间隙(箭头所示)。

这是我的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吗?

感谢。

1 个答案:

答案 0 :(得分:0)

好的,这里是编辑的答案: 问题在于sizeToFit中的layoutSubviews。只需点击此链接即可解决您的问题: here

如果您还希望单元格和标签动态调整大小到相应的文本,但同时您的时间标签直接位于其下方,则必须根据文本,字体和字体确定uilabel的大小 - 尺寸。 浏览此处获取更多信息: here