在静态表格视图中重复使用表格单元-iOS-Swift

时间:2019-04-26 18:55:34

标签: swift uitableview reusability

我是新手,学习敏捷

我想在表格视图中使用静态单元格。我的所有单元格看起来都很相似,所以我想到了将xib用于tablecell并在我的静态表视图中使用它。

我当前面临的问题是,当我尝试访问xib中存在的标签时,在以下代码中引发错误:ConfigureCell。 线程1:致命错误:意外地发现nil,同时隐式展开一个可选值 为什么我没有一个时会说即时解包为可选

不确定在这里需要做什么/请咨询。

下面是我的代码:

class NewTableViewController: UITableViewController {

    override func viewDidLoad() {
        super.viewDidLoad()

       self.tableView.register(ReusableTableViewCell.self, forCellReuseIdentifier:"custom")
    }

    // MARK: - Table view data source

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

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


    override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        guard let cell = tableView.dequeueReusableCell(withIdentifier: "custom", for: indexPath) as? ReusableTableViewCell else {
            return UITableViewCell()
        }
        if indexPath.row == 0 {
            cell.configureCell(title: "Name", detail: "hello")
        }
        if indexPath.row == 2 {
            cell.configureCell(title: "Age", detail: "23")
        }
        if indexPath.row == 3 {
            cell.configureCell(title: "Dept", detail: "HR")
        }
        return cell
    }
}

class ReusableTableViewCell: UITableViewCell {

@IBOutlet weak var leftLabel: UILabel!
@IBOutlet weak var rightLabel: UILabel!

override func awakeFromNib() {
    super.awakeFromNib()
    // Initialization code
}

override func setSelected(_ selected: Bool, animated: Bool) {
    super.setSelected(selected, animated: animated)

    // Configure the view for the selected state
}

func configureCell(title: String, detail: String) {

    leftLabel.text = title //Error Here: Thread 1: Fatal error: Unexpectedly found nil while implicitly unwrapping an Optional value

    rightLabel.text = detail

}

} enter image description here

1 个答案:

答案 0 :(得分:0)

找到解决方案。 问题在于线 self.tableView.register(ReusableTableViewCell.self,forCellReuseIdentifier:“ custom”)

用 tableView.register(UINib(nibName:“ ReusableTableViewCell”,bundle:nil),forCellReuseIdentifier:“ custom”)解决了该问题

谢谢