小编典典

调整 UITableView 的大小以适应内容

all

我正在创建一个应用程序,该应用程序将在 a 中显示一个问题,UILabel并在
中显示一个多项选择答案UITableView,每行显示一个多项选择。问题和答案会有所不同,所以我需要UITableView在高度上保持动态。

我想为这张sizeToFit桌子找个工作。表格的框架设置为其所有内容的高度。

谁能建议我如何实现这一目标?


阅读 73

收藏
2022-07-02

共1个答案

小编典典

其实我自己找到了答案。

CGRect我只是为tableView.framewith创建一个新heighttable.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;
    });
2022-07-02