我有一个tableView,其类设置为TableViewController。在故事板中,我单击单元格并将其设置为MyCell类。同样在故事板中,我将标识符设置为“MyCell”。然后我复制&将其粘贴到
中let cell = tableView.dequeueReusableCell(withIdentifier: "MyCell", for: indexPath) as! MyCell
我错过了哪一步?我三重检查了Identifier字符串完全相同。 tableView和单元格设置为正确的类。
答案 0 :(得分:1)
解决方案是删除, for: indexPath
部分。