gpt4 book ai didi

ios - UITableView 以编程方式未显示

转载 作者:行者123 更新时间:2023-11-30 13:01:30 25 4
gpt4 key购买 nike

我使用以下代码以编程方式创建表格 View :

lazy var myTableView: UITableView =
{
let tableView = UITableView()
tableView.delegate = self
tableView.dataSource = self
tableView.registerClass(UITableViewCell.self, forCellReuseIdentifier: "cell")
return tableView
}()

然后我将其作为 subview 添加到 viewDidLoad 中的 View 中:

view.addSubview(myTableView)

然后在我设置所有 UI 约束的方法中,我将其布局如下:

myTableView.widthAnchor.constraintEqualToAnchor(view.widthAnchor).active = true
myTableView.topAnchor.constraintEqualToAnchor(temporaryContainerView.bottomAnchor).active = true

最后,这是我的委托(delegate)/数据源方法:

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

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 5
}

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell:UITableViewCell = tableView.dequeueReusableCellWithIdentifier("cell") as UITableViewCell!
cell.textLabel?.text = "Test"

return cell
}

当我在上述方法上放置断点时,似乎 numberOfRowsinSection 被调用了很多次,但 cellForRowAtIndexPath 根本没有被调用。

为什么没有出现?

最佳答案

我必须在我的 TableView 上设置 centerXAnchor 约束,以便它能够正确定位以及 TranslatesAutoresizingMaskIntoConstraints = false

关于ios - UITableView 以编程方式未显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39863284/

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