我正在实施这一点。但图像并没有隐藏。什么是正确的方法?
- (void)tableView:(UITableView*)tableView willBeginEditingRowAtIndexPath:(NSIndexPath *)indexPath;
{
PlayerCell *cell = [tableView dequeueReusableCellWithIdentifier:@"PlayerCell"];
cell.ratingImageView.hidden= YES;
return;
}