ios - 如何在 UITableView 的页脚标题中使用换行符?
<p><p>我为我的表格 View 提供了一个页脚标题,如下所示:</p>
<pre><code>override func tableView(_ tableView: UITableView, titleForFooterInSection section: Int) -> String? {
return "DEVELOPED BY COMPANY NAME\nIN COMPANY LOCATION"
}
</code></pre>
<p>当我运行我的代码时,只有“由公司名称开发”显示在页脚中,而换行符之外的文本无处可见。我将如何确保看到所有文本?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>如果符合您的设计,您可以在 Interface Builder 中更改为分组表格样式。</p>
<ol>
<li>在 Storyboard 中 - 选择您的 viewController - 选择表格 </li>
<li>在界面生成器中选择“样式”属性</li>
<li>选择“分组”</li>
</ol>
<p>分组样式默认提供多行页脚。只需覆盖 <code>func tableView(_ tableView: UITableView, titleForFooterInSection section: Int) -> String?</code></p>
<p>就是这样。无需额外的 View 或提供高度。</p></p>
<p style="font-size: 20px;">关于ios - 如何在 UITableView 的页脚标题中使用换行符?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/47734247/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/47734247/
</a>
</p>
页:
[1]