如何在TableView中更改复选标记?

时间:2013-04-09 20:07:53

标签: ios uitableview storyboard

在我的应用程序中,在storyboard中,我有一个包含大量Table View Cells的屏幕。

例如,在前两个中,当用户触摸其中一个时,我需要移动复选标记(进行选择)。

enter image description here

是否有一种简单的方法可以做到这一点,例如,插座连接? 或者怎么做?

感谢。

1 个答案:

答案 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];
    }
}