在我的应用程序中,在storyboard中,我有一个包含大量Table View Cells的屏幕。
例如,在前两个中,当用户触摸其中一个时,我需要移动复选标记(进行选择)。
是否有一种简单的方法可以做到这一点,例如,插座连接? 或者怎么做?
感谢。
答案 0 :(得分:2)
查看Apple managing selections in UITableView上的文档。基本上,您将在表格视图的didSelectRowAtIndexPath
方法中协调先前所选单元格(删除复选标记附件)和当前所选单元格(添加复选标记附件)的附件视图。
这是一个粗略的实现,假设您有一个可用的taskTypes
数组,并且选择了currentTaskType
的属性。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[tableView deselectRowAtIndexPath:indexPath animated:NO];
NSInteger taskTypeIndex = [taskTypes indexOfObject:[self currentTaskType]];
if ( taskTypeIndex == [indexPath row] )
{
return;
}
NSIndexPath *oldIndexPath = [NSIndexPath indexPathForRow:taskTypeIndex inSection:0];
UITableViewCell *newCell = [tableView cellForRowAtIndexPath:indexPath];
UITableViewCell *oldCell = [tableView cellForRowAtIndexPath:oldIndexPath];
if ( [newCell accessoryType] == UITableViewCellAccessoryNone )
{
[newCell setAccessoryType:UITableViewCellAccessoryCheckmark];
[self setCurrentTaskType:[taskTypes objectAtIndex:[indexPath row]]];
}
if ( [oldCell accessoryType] == UITableViewCellAccessoryCheckmark )
{
[oldCell setAccessoryType:UITableViewCellAccessoryNone];
}
}