trying to figure out how to set the selected image for for a tableViewCell.
tableViewCell
The old way of writing this was cell.selectedImage but that has bee
cell.selectedImage
Use this one!:
selectionBackground = [UIImage imageNamed:@"background.png"]; cell.selectedBackgroundView =[[UIImageView alloc] init]; ((UIImageView *)cell.selectedBackgroundView).image = selectionBackground;