gpt4 book ai didi

ios - 连接到自定义类时单元格消失

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

我在 UITabBarController 的 UINavigationController 中有一个静态单元格 UITableViewController。

当我为 UITableViewController 创建自定义类并设置它时,UITableView 中的所有单元格在构建后都消失了。我可以在设计器中看到它们,但在模拟器和设备中都看不到。

我是 iOS 开发的新手,如果我犯了一个明显的错误,请原谅。

最佳答案

致每一个有同样奋斗的人。在 UINavigationController 中是否有 UITableViewController 并不重要,在创建自定义类之后,如果您有静态单元格,您应该注释或删除以下方法:

override func numberOfSections(in tableView: UITableView) -> Int {
// #warning Incomplete implementation, return the number of sections
return 0
}

override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
// #warning Incomplete implementation, return the number of rows
return 0
}

override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "reuseIdentifier", for: indexPath)

// Configure the cell...

return cell
}

关于ios - 连接到自定义类时单元格消失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46144006/

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