我想在表格视图中创建一个复选标记。当我点击特定行时,复选标记是可见的,所以我想在特定行被选中时显示复选标记。请指导我并给我一些链接。
这是我的代码,
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
[self.tableView cellForRowAtIndexPath:indexPath].accessoryType = UITableViewCellAccessoryCheckmark;
}
当我单击特定状态(一次只选择一行)时,我想显示附件类型。
谢谢。