I am trying to have an UIimageview's image change to it's highlighted image when the cell it is in is selected. 问题是我不希望单元格的背景颜色在被选中时发生变化。我尝试通过使用覆盖颜色。
cell.selectedBackgroundView.backgroundColor = [UIColor clearColor];
然而,这没有任何效果。我不想将单元格的选择类型设置为无,因为这样就无法选择/突出显示单元格,因此单元格的图像视图永远不会切换到突出显示状态。
请让我知道如何控制选定单元格的背景颜色并覆盖颜色变化。