0

我有一个 UITableView 嵌入到 UIView 中。表格视图包含一系列动态自定义单元格,这些单元格是一系列高度(如下面的屏幕截图所示)

是否可以计算并应用 UITable 的高度以及父 UIView 的高度?

4

1 回答 1

2
CGRect parentFrame = {name of your UIView}.frame;
parentFrame.size.height = {name of your UITableView}.frame.size.height;
[{name of your UIView} setFrame:parentFrame];

现在您将父视图的高度设置为表格视图的高度。

于 2013-11-04T17:53:27.787 回答