Is it possible to programmatically set (from the awakeFromNib method) the background color of a portion of a custom table view cell when the cell is selected.
My attempt so far highlights the entire cell in red
UIView *bgColorView = [[UIView alloc] init];
bgColorView.backgroundColor = [UIColor redColor];
[self setSelectedBackgroundView:bgColorView];