Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 UITableView 嵌入到 UIView 中。表格视图包含一系列动态自定义单元格,这些单元格是一系列高度(如下面的屏幕截图所示)
是否可以计算并应用 UITable 的高度以及父 UIView 的高度?
CGRect parentFrame = {name of your UIView}.frame; parentFrame.size.height = {name of your UITableView}.frame.size.height; [{name of your UIView} setFrame:parentFrame];
现在您将父视图的高度设置为表格视图的高度。