gpt4 book ai didi

ios - 获取没有滚动条的UITableView的高度

转载 作者:IT王子 更新时间:2023-10-29 07:40:23 25 4
gpt4 key购买 nike

我需要获取 UITableView 的完整高度(即没有更多可滚动的高度)。有什么办法吗?

我试过 [tableView sizeThatFits:CGSizeZero],但只返回 0x0 CGSize

最佳答案

试试 contentSize 方法,它继承自 UITableView 的父类(super class) UIScrollView。但是,您可能会发现 contentSize 返回不正确或过时的值,因此您可能应该先调用 layoutIfNeeded 以重新计算表格的布局。

- (CGFloat)tableViewHeight
{
[tableView layoutIfNeeded];
return [tableView contentSize].height;
}

关于ios - 获取没有滚动条的UITableView的高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2528073/

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