我将 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;
但是,您可以在屏幕截图中看到它正在蔓延到单元格的边界之外。设置背景的适当方法是什么,这样就不会发生这种情况?