菜鸟教程小白 发表于 2022-12-12 14:32:42

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


                                            <p><p>我一直在搜索并试图让我的 <code>UITableView</code> 部分标题允许多行文本,但我无法让它工作。这是它显示的内容:</p>

<p> <a href="/image/me0L9.png" rel="noreferrer noopener nofollow"><img src="/image/me0L9.png" alt="enter image description here"/></a> </p>

<p>但文字是:埃弗顿足球俱乐部的主场 Jersey 是什么颜色的?</p>

<p>我目前正在尝试的是:</p>

<pre><code>func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -&gt; UIView? {

      let label = UILabel()
      label.lineBreakMode = .byWordWrapping
      label.numberOfLines = 0
      label.text = question?.question
      return label
}
</code></pre>

<p>并将以下内容放在 <code>viewDidLoad</code> 事件中</p>

<pre><code>tableView.estimatedRowHeight = 44.0
tableView.rowHeight = UITableViewAutomaticDimension
</code></pre>

<p>但这并没有什么不同。谁能帮帮我?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>而不是</p>

<pre><code>tableView.estimatedRowHeight = 44.0
tableView.rowHeight = UITableViewAutomaticDimension
</code></pre>

<p>在下面使用</p>

<pre><code>tableView.sectionHeaderHeight = UITableViewAutomaticDimension
tableView.estimatedSectionHeaderHeight = 44
</code></pre>

<p>欲了解更多信息,请阅读以下答案
<a href="https://stackoverflow.com/a/29763200/1320352" rel="noreferrer noopener nofollow">https://stackoverflow.com/a/29763200/1320352</a> </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - UITables 部分标题中的多行文本,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/48892111/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/48892111/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - UITables 部分标题中的多行文本