菜鸟教程小白 发表于 2022-12-13 15:45:42

ios - 无法将 UITableView 约束到安全区域


                                            <p><p>似乎无法将约束添加到 <code>UITableView</code> </p>

<p>我想在表格 View 中添加“对齐顶部到:安全区域”约束,因为如您所见,单元格似乎不在安全区域内:</p>

<p> <img src="/image/AYEgD.png" alt=""/> </p>

<p>如何将表格 View 限制在安全区域的范围内?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>似乎您使用的是 UITableViewController。这样您就无法更改 tableView 的默认约束。您只能做一件事就是添加一个导航 Controller 。 (点击你的 UITableViewController 而不是显示的顶部:Editor->Embed In-> Navigation Controller)</p>

<p>另一种方法是将 UITableView 添加到 UIViewController。在这种情况下,您可以添加任何您想要的约束。</p>

<p>查看下面的代码。这可以帮助您确定下一步应该做什么。</p>

<pre><code>import UIKit

class ViewController: UIViewController,UITableViewDataSource, UITableViewDelegate {

    var data: = [&#34;Cell 1&#34;, &#34;Cell 2&#34;, &#34;Cell&#34;]
    var colors: = [.red, .green, .blue]

    @IBOutlet weak var tableView: UITableView!

    override func viewDidLoad() {
      super.viewDidLoad()

      tableView.delegate = self
      tableView.dataSource = self
      tableView.reloadData()
    }

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -&gt; UITableViewCell {
      let cell = tableView.dequeueReusableCell(withIdentifier: &#34;id&#34;, for: indexPath)
      cell.textLabel?.text = data
      cell.contentView.backgroundColor = colors

      return cell
    }

    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -&gt; Int {
      return data.count
    }

    func numberOfSections(in tableView: UITableView) -&gt; Int {
      return 1
    }

}
</code></pre>

<p>最后你会得到类似下面截图的东西。</p>

<p>附:不要忘记在原型(prototype)单元格中添加标识符。在我的示例中,标识符是“id”</p>

<p> <a href="/image/ANq7N.png" rel="noreferrer noopener nofollow"><img src="/image/ANq7N.png" alt="TableView"/></a> </p>

<p>这是所有 Xcode 项目的截图。</p>

<p> <a href="/image/ZiUsY.png" rel="noreferrer noopener nofollow"><img src="/image/ZiUsY.png" alt="Xcode project"/></a> </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 无法将 UITableView 约束到安全区域,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/46799522/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/46799522/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 无法将 UITableView 约束到安全区域