我在 tableview:willDisplayCell 中设置单元格的背景颜色,我得到了我想要的颜色。但是,单元格的左右边缘是不同的阴影,我不知道为什么。有谁知道为什么单元格边缘的背景颜色的阴影会不同?谢谢
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
cell.backgroundColor = [UIColor colorWithRed:.9333333 green:.46666667 blue:.43137225 alpha:0.5];
}