OK, I edited this answer based on the discussion.
Assuming you subclass UITableViewCell, use this code in your implementation:
(e.g. CustomTableCell.m)
#define MyTableCellHighlightedNotification @"MyTableCellHighlighted" - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier { self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]; if(self){
source share