4

我正在使用此代码来调整维护单元格标题的标签的大小。问题是单元格标签在我滚动表格之前不会调整大小。单元格需要消失才能正确调整其标签大小。我可以做些什么来使所有单元格标签调整大小而不必事先滚动?

谢谢阅读。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    ExampleTableViewCell *cell = (ExampleTableViewCell *)[tableView dequeueReusableCellWithIdentifier:@"ExampleTableViewCell"];

    if (cell == nil) {
        NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"ExampleTableViewCell" owner:self options:nil];
        cell = [nib objectAtIndex:0];
    }

    cell.title.text = [self.test objectAtIndex:[indexPath row]];

    //Calculates the expected size based on the font and linebreak mode of the label.
    CGSize maximumLabelSize = CGSizeMake(200, [UIScreen mainScreen].bounds.size.width);

    CGSize expectedLabelSize = [cell.title.text sizeWithFont:cell.title.font constrainedToSize:maximumLabelSize lineBreakMode:cell.title.lineBreakMode];

    // Adjusts the label the the new height.
    CGRect newFrame = cell.title.frame;
    newFrame.size.height = expectedLabelSize.height;
    cell.title.frame = newFrame;

    return cell;
}
4

3 回答 3

0

尝试编写相同的代码

willDisplayCellUItableViewController 的方法

另一种方法是 .... 在您的 ExampleTableViewCell 类中实现

- (void)layoutSubviews{
}

在上面的函数中设置你的标题框架。它应该工作

于 2013-04-03T11:22:32.000 回答
0

您必须实现方法 heightForRowAtIndexPath 并返回单元格的高度,然后您的问题就解决了:-)

于 2013-06-27T05:21:27.813 回答
-1

我发现 Matt Long 的解决方案真的很有帮助(http://www.cimgf.com/2009/09/23/uitableviewcell-dynamic-height/)。

于 2014-02-24T16:52:14.287 回答