I've set the colour of my UITableViewCell as follows:
UIColor *RedCell = [UIColor colorWithRed:(199/255.0) green:(0/255.0) blue:(39/255.0) alpha:0.2];
cell.textLabel.backgroundColor = [UIColor clearColor];
cell.contentView.backgroundColor = RedCell;
However, you can see in the screenshot that it is creeping outside the border of the cell. What's the appropriate way to set the background so this doesn't happen?
