gpt4 book ai didi

ios - UITableViewHeaderFooterView 的高度

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:21:20 26 4
gpt4 key购买 nike

如何在 -tableview:heightForFooterInSection: 中计算 UITableViewHeaderFooterView 的高度?我提前创建了 View ,它在 textLabel 中包含动态文本,因此具有不同的高度。

最佳答案

根据我使用以下内容的其他答案,我对这个解决方案并不完全满意,因为它使用硬编码填充并且不考虑 detailTextLabel,但它适用于我的案例。

- (CGFloat)heightOfHeaderFooterView:(UITableViewHeaderFooterView *)view {
return ceilf([view.textLabel.text boundingRectWithSize:CGSizeMake(self.tableView.bounds.size.width - 2*self.tableView.separatorInset.left, CGFLOAT_MAX) options:(NSStringDrawingUsesLineFragmentOrigin|NSStringDrawingUsesFontLeading) attributes:@{NSFontAttributeName:view.textLabel.font} context:nil].size.height) + 20;
}

关于ios - UITableViewHeaderFooterView 的高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32107154/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com