I'm trying to create a simple app, but:
'NSInternalInconsistencyException', reason: 'unable to dequeue a cell with identifier term - must register a nib or a class for the identifier or connect a prototype cell in a storyboard'
Code:
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! CostumeCellView
cell.textLabel?.text = titles[indexPath.row]
return cell
}
Screens:
class

identifier

I have no idea what to do.