我编写了一个程序,它将一组对象存储在一个标签下,以后可以查看和更改标签。我为此编写了以下代码(仅包括添加复选标记的部分):
- (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
cell.selectionStyle = UITableViewCellSelectionStyleNone; //To avoid the blue selection
//necessary codes to populate the table here
[tableView cellForRowAtIndexPath:indexPath].accessoryType = UITableViewCellAccessoryCheckmark;
return cell;
}
但该表甚至没有显示任何复选标记。是的,我再次尝试通过评论关闭cell.selectionStyle = UITableViewCellSelectionStyleNone;
,仍然没有用。我没有在其他地方编写任何代码来取消选中已经制作的复选标记。