I have a tableViewController with a search bar and a search display controller.
That main tableViewController's tableView has a prototype cell defined on storyboard.
I am having crashes on the line
FileManagerTableViewCell *cell = (FileManagerTableViewCell *)[tableView dequeueReusableCellWithIdentifier:cellIdentifier];
when the search tableview is about to be displayed. Apparently the search tableView cannot access the prototype cells defined on the main tableView on storyboard.
How do I make the search tableview access the prototype cell defined for the main tableview on storyboard?