小编典典

在Swift中获取表内容的高度

swift

我试图获取表中所有内容的高度,以便可以更新它所在的容器。这将使容器和滚动视图中的其他视图一起滚动。


阅读 177

收藏
2020-07-07

共1个答案

小编典典

斯威夫特

var tableViewHeight: CGFloat {
    tableView.layoutIfNeeded()

    return tableView.contentSize.height
}

目标C

- (CGFloat)tableViewHeight {
    [tableView layoutIfNeeded];

    return [tableView contentSize].height;
}
2020-07-07