gpt4 book ai didi

ios - 无法将 UITableView 限制在安全区域

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:36:32 25 4
gpt4 key购买 nike

似乎不可能将约束添加到 UITableView

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

如何将 TableView 限制在安全区域的范围内?

最佳答案

您似乎使用了 UITableViewController。通过这种方式,您无法更改 tableView 的默认约束。您可以做的唯一一件事就是添加一个导航 Controller 。 (点击你的 UITableViewController 而不是在你的显示器的顶部:Editor->Embed In-> Navigation Controller)

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

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

import UIKit

class ViewController: UIViewController,UITableViewDataSource, UITableViewDelegate {

var data: [String] = ["Cell 1", "Cell 2", "Cell"]
var colors: [UIColor] = [.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) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "id", for: indexPath)
cell.textLabel?.text = data[indexPath.row]
cell.contentView.backgroundColor = colors[indexPath.row]

return cell
}

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

func numberOfSections(in tableView: UITableView) -> Int {
return 1
}

}

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

附言不要忘记将标识符添加到原型(prototype)单元格中。在我的示例中,标识符是“id”

TableView

这是所有 Xcode 项目的屏幕截图。

Xcode project

关于ios - 无法将 UITableView 限制在安全区域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46799522/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com