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
You can set selected backgroundView like below....
UIImageView *selBGView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"urimage.png"]]; cell.selectedBackgroundView = selBGView;