我一直在搜索并尝试获取UITableView节标题以允许多行文本,但我无法使其正常工作。它显示为:

ios - UITables部分标题中的多行文本-LMLPHP

但是文字是:埃弗顿足球俱乐部的主场球衣是什么颜色的?

我目前正在尝试的是:

func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {

        let label = UILabel()
        label.lineBreakMode = .byWordWrapping
        label.numberOfLines = 0
        label.text = question?.question
        return label
}

并将以下内容放入viewDidLoad事件
tableView.estimatedRowHeight = 44.0
tableView.rowHeight = UITableViewAutomaticDimension

但这没有任何区别。谁能帮我吗?

最佳答案

代替

tableView.estimatedRowHeight = 44.0
tableView.rowHeight = UITableViewAutomaticDimension

在下面使用
tableView.sectionHeaderHeight = UITableViewAutomaticDimension
tableView.estimatedSectionHeaderHeight = 44

欲了解更多信息,请阅读以下答案
https://stackoverflow.com/a/29763200/1320352

关于ios - UITables部分标题中的多行文本,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48892111/

10-11 22:32