override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let row=animals[indexPath.row]
let cellIdentifier = "memoCell"
var cell=tableView.dequeueReusableCell(withIdentifier: cellIdentifier, for: indexPath) as! MemoCellTableViewCell
if cell == nil {
print("cell is nill")
cell = MemoCellTableViewCell(style: .default, reuseIdentifier: cellIdentifier)
}
cell.name?.text="aaa"
cell.address?.text="haha"
return cell
}
我有以下错误。
'无法使用标识符memoCell对单元格进行出列 - 必须为标识符注册一个nib或类,或者在故事板中连接一个原型单元格
我不知道为什么。 我在故事板上设置了没有错误的类,并且还正确设置了标识符
我的代码在github上 https://github.com/kotran88/iostableviewTest
请帮助我做到这一点
答案 0 :(得分:1)
您必须在--add-modules=java.se.ee
viewDidLoad方法
ViewController