gpt4 book ai didi

ios - 在 ViewController 中使用 UITableVIew 时获取 Nil

转载 作者:搜寻专家 更新时间:2023-11-01 06:40:38 25 4
gpt4 key购买 nike

我在 viewDidLoad 中的这行代码中收到 fatal error :在展开可选值时意外发现 nil:self.tableView.registerClass(UITableViewCell.self, forCellReuseIdentifier: "细胞”)

我已经添加了一个标识符来匹配名称“cell”,请参见下图: enter image description here

enter image description here

当我添加以下代码时,错误转移到它。

enter image description here

最佳答案

从 viewDidLoad 中删除该行。

self.tableView.registerClass(UITableViewCell.self, forCellReuseIdentifier: "cell")  

并将其添加到 cellForRow 中以使单元格出队。

let cell = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath) as UITableViewCell

如果您使用的是原型(prototype) TableView ,则无需注册单元格。

关于ios - 在 ViewController 中使用 UITableVIew 时获取 Nil,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35868779/

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