There is an example iOS app developer called iPhoneCoreDataRecipes that shows how they do something like this.
In the file: IngredientDetailViewController.m when loading the table data they have the line:
[[NSBundle mainBundle] loadNibNamed:@"EditingTableViewCell" owner:self options:nil];
Looking at the EditingTableViewCell.xib file, you will see that they have a table view cell with a label and a text field, IngredientDetailViewController passes the values ββfor the label and text fields.
Using this trick, you can easily customize TableViewCell to your liking. :-)
Adam21e
source share