无法将值添加到UITableViewCell

问题描述 投票:-3回答:2

我有两个视图控制器,其中一个是侧面菜单。我尝试使用数组中的数据初始化其单元格,但在尝试为单元格标签文本赋值时,我一直有错误。这是我的代码:

class TableViewCell: UITableViewCell {
    @IBOutlet weak var cellImage: UIImageView!
    @IBOutlet weak var cellLabel: UILabel!
}


class SideMenuTableViewController: UITableViewController {
    let vc = ViewController()
    override func viewWillAppear(_ animated: Bool) {
        super.viewWillAppear(animated)

        tableView.reloadData()

    }

    override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int{
        return vc.array.count

    }
    override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! TableViewCell
        let myImage = UIImage(named: "checkbox")
        cell.cellLabel.text = "test" //HERE IS THE ERROR
        cell.cellImage.image = myImage
        return cell
    }

}

这是错误。

Thread 1: Fatal error: Unexpectedly found nil while unwrapping an Optional value

在调试器中,我可以看到我的单元格包含来自Sotryboard的标签和图像,但我无法将myImage和任何文本分配给单元格。我究竟做错了什么?在此先感谢您的帮助。

ios swift uitableview side-menu
2个回答
1
投票

似乎

let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! TableViewCell

导致崩溃。您是否还记得将Storyboard中的细胞原型类设置为TableViewCell


0
投票

检查: 1.自定义单元格在xib中设置了reusableCellIdentifier。

enter image description here

  1. 如果您使用xib作为自定义单元格,则应使用UITableView注册自定义单元格:

tableView.register(TableViewCell.self,forCellReuseIdentifier:“yourIdentifier”)

© www.soinside.com 2019 - 2024. All rights reserved.