The best way to do this is to not define a cell in the storyboard at all.
Create a separate NIB file and define a UITableViewCell there. Then you can register the tip with the table and load it from there. Now you have only one copy of the cell definition, but it can be used in several places.
Check out my question here ...
UITableView registerNib: forCellReuseIdentifier:
This is not a duplicate question, but it will show you how to identify and register nib.
source share