I am implementing this. But the image is not hiding. What is the proper way?
- (void)tableView:(UITableView*)tableView willBeginEditingRowAtIndexPath:(NSIndexPath *)indexPath;
{
PlayerCell *cell = [tableView dequeueReusableCellWithIdentifier:@"PlayerCell"];
cell.ratingImageView.hidden= YES;
return;
}
You need to get the actual cell at the index path, see if the following replacement does the trick:
Cheers