我正在创建一个应用程序,该应用程序将在 a 中显示一个问题,UILabel并在 中显示一个多项选择答案UITableView,每行显示一个多项选择。问题和答案会有所不同,所以我需要UITableView在高度上保持动态。
UILabel
UITableView
我想为这张sizeToFit桌子找个工作。表格的框架设置为其所有内容的高度。
sizeToFit
谁能建议我如何实现这一目标?
其实我自己找到了答案。
CGRect我只是为tableView.framewith创建一个新height的table.contentSize.height
CGRect
tableView.frame
height
table.contentSize.height
这会将 的高度设置UITableView为其height内容的高度。由于代码修改了 UI,别忘了在主线程中运行它:
dispatch_async(dispatch_get_main_queue(), ^{ //This code will run in the main thread: CGRect frame = self.tableView.frame; frame.size.height = self.tableView.contentSize.height; self.tableView.frame = frame; });