计算UITableViewCell高度以适合字符串

时间:2014-04-15 08:03:14

标签: ios uitableview

我有一个NSMutableArray,可能包含数百个不同的字符串。每个字符串都是用户定义的,可以有任何长度,但不超过平均段落。

我需要找出每个字符串可以占用的行数。所以,我可以计算每UITableviewCell个所需的高度。

2 个答案:

答案 0 :(得分:1)

使用以下代码计算并设置单元格的高度:

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    // Define `veryverySmallTitleFont`
    // Define `descLabel`

    NSString *ourText = @"Your string data from array";
    UIFont *font = [UIFont fontWithName:@"Verdana" size:veryverySmallTitleFont];
    font = [font fontWithSize:veryverySmallTitleFont];

    CGSize constraintSize = CGSizeMake(descLabel.frame.size.width, 1000);
    CGSize labelSize = [ourText sizeWithFont:font
                           constrainedToSize:constraintSize
                               lineBreakMode:UILineBreakModeWordWrap];

    return labelSize.height;
}

答案 1 :(得分:-1)

我个人使用便捷方法然后在tableView:heightForRowAtIndexPath:

中发送消息
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return [self cellHeightForRowAtIndexPath:indexPath];
}

- (CGFloat)cellHeightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSString *cellString = <YOUR MODEL OBJECT>;

    NSDictionary *attributes = @{ NSFontAttributeName: [UIFont systemFontOfSize:16.0f] };
    NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc]
                                                   initWithString:cellString
                                                   attributes:attributes];

    CGFloat width = self.tableView.frame.size.width - 32.0f;
    CGRect frame = [attributedString boundingRectWithSize:CGSizeMake(width, MAXFLOAT)
                    options:NSStringDrawingUsesLineFragmentOrigin context:nil];

    // Add some extra padding to the height
    CGFloat height = frame.size.height + 16.0f;

    return ceil(height);
}

当然,我将numberOfLines的{​​{1}}属性设置为UILabel中的0