我的故事板上有一个TableViewController,它有一些单元格(静态),我想在单击单元格时添加一个复选标记,我怎样才能从故事板中调用单个单元格而不必在其中构建它们码?
答案 0 :(得分:0)
在表格视图的委托中:
- (void)tableView:(UITableView *)tv didSelectRowAtIndexPath:(NSIndexPath *)ip
{
MyCustomCell *cell = [tv cellForRowAtIndexPath:ip];
// add the checkmark to the cell
[cell.contentView addSubview:checkmarkIcon];
}