I usually never have a problem with this step, but for some reason when I re set up my storyboard now I have an issue with this part of my code:
func tableVi
One of the reason,May be in Identity inspector module is different then your project name .
You may have forgotten to tell the storyboard that this cell is a TableViewCell. Select the prototype cell and set the Custom Class in the Identity inspector.
You may have called registerClass:forCellReuseIdentifier:
. If so, delete that call; it actually prevents us from getting the cell from the storyboard.
You are calling tableView.dequeueReusableCellWithIdentifier
. That is a big mistake. You should call tableView.dequeueReusableCellWithIdentifier:forIndexPath:
.