菜鸟教程小白 发表于 2022-12-12 12:17:58

ios - 移出屏幕后动态高度 UILabel 工作


                                            <p><p>我正在尝试在 UITableViewCells 中创建多行动态 UILabel。我有一个带有“评论”标签的自定义 UITableViewCell。单元格和标签在 Storyboard 中创建。</p>

<p>我可以根据要存储在 UILabel 中的多行数据正确计算 UITableViewCells 的高度(使用 heightForRowAtIndexPath)。但是,我的问题在于实际的 UILabel 内容。 UILabel 内容将在表加载时仅显示 1 行数据。但是,一旦包含多行 UILabel 数据的单元格移出屏幕并重新出现在屏幕上,多行数据就会正确显示在具有多行的 UILabel 中。有没有办法解决这个问题,以便多行数据在表加载时正确显示?</p>

<pre><code>- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
    CustomCell *cCell = (CustomCell *)cell;
    MyObject = ;

    cCell.commentLabel.frame = CGRectMake(65.0f, 28.0f, 243.0f, 200.0f);
    cCell.commentLabel.text = MyObject.multi_line_text_data;
    cCell.commentLabel.adjustsFontSizeToFitWidth = NO;
    cCell.commentLabel.autoresizingMask = UIViewAutoresizingFlexibleWidth;
    cCell.commentLabel.font = ;
    cCell.commentLabel.lineBreakMode = NSLineBreakByWordWrapping;
    cCell.commentLabel.numberOfLines = 0;
    ;

}
</code></pre>

<p>谢谢!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>由于您在 Storyboard 中执行此操作,因此您可以在那里设置必要的标签属性(lineBreakMode 和行数)。只需给标签一个特定的宽度约束和单元格顶部、底部和左侧的约束。然后,在代码中使用 sizeWithFont:constrainedToSize:lineBreakMode: in heightForRowAtIndexPath: 根据标签的内容计算单元格的适当高度——由于其约束,标签将与单元格一起扩展到适当的大小。像这样的:</p>

<pre><code>-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    CGSize rowSize = sizeWithFont: constrainedToSize:CGSizeMake(260, CGFLOAT_MAX) lineBreakMode:NSLineBreakByWordWrapping];
    return rowSize.height + 30;
}
</code></pre>

<p>这里,260 是我在 IB 中给标签的宽度,而 30 是用于说明标签上方和下方的填充的软糖因子(根据经验确定)。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 移出屏幕后动态高度 UILabel 工作,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/17517244/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/17517244/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 移出屏幕后动态高度 UILabel 工作