UITableViewCellの色を次のように設定しました。
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;
ただし、スクリーンショットでは、セルの境界の外側に忍び寄っていることがわかります。これが起こらないように背景を設定する適切な方法は何ですか?