I was wondering whether anyone knew how to solve this problem?
*** Terminating app due to uncaught exception \'NSInvalidArgumentException\', reason: \
You're casting the cell you get to a FolderCellTableViewCell
but in fact the cell you receive from [foldertableView dequeueReusableCellWithIdentifier:foldersIdentifier];
is a UITableViewCell
not a FolderCellTableViewCell
. Make sure your storyboard table view cell is of class FolderCellTableViewCell
.