I am trying to have an UIimageview's image change to it's highlighted image when the cell it is in is selected. The problem is that I do not want the cell's background color to change when it is selected. I tried overriding the coloring by using.
cell.selectedBackgroundView.backgroundColor = [UIColor clearColor];
However, this had no effect. I do not want to set the cell's selectiontype to None because then the cell cannot be selected/highlighted so the cell's imageview is never switched to highlighted state.
Please let me know how I can control the background color of a selected cell and override the color change.