Setting up an app with a social feed and got to the stage of making my custom prototype cells to display the data. However, when I run the app, only the table view shows and the cells aren't there? The seperators for cells are there.
In my ViewController, I've got
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell: homeViewTableViewCell = tableView.dequeueReusableCell(withIdentifier: "postCell", for: indexPath) as! homeViewTableViewCell
return cell
EDIT**
This is the output I get when connecting it as a dataSource:
Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[ setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key description.'