我正在实施这个。但图像并没有隐藏。什么是正确的方法?
- (void)tableView:(UITableView*)tableView willBeginEditingRowAtIndexPath:(NSIndexPath *)indexPath;
{
PlayerCell *cell = [tableView dequeueReusableCellWithIdentifier:@"PlayerCell"];
cell.ratingImageView.hidden= YES;
return;
}
答案 0 :(得分:1)
您必须获取使用该IndexPath选择的单元格,然后从该单元格中隐藏图像视图。我很确定苹果教程有一个获取所选单元格的例子。
答案 1 :(得分:0)
您需要在索引路径中获取实际单元格,看看以下替换是否有效:
PlayerCell *cell = [tableView cellForRowAtIndexPath:indexPath];
干杯