4

我正在努力完成这项工作,但似乎无法完全理解这个想法。

到目前为止,我已经将它带到了您可以选择一个单元格并能够生成复选标记的位置。然后,当您选择不同的单元格时,先前的复选标记将消失,并且表格视图将在您刚刚选择的新单元格上进行新的复选标记。这一切都很好。

但是,我想在您选择带有复选标记的同一个单元格时,复选标记不会消失。但是,确实如此!

我已经尝试了大量的 if 语句,看看我是否可以弄清楚如何使这项工作,但无法找出解决方案。这可能是我需要在我的代码中重新排列的小事。

这是我的代码:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

    if(self.checkedIndexPath)
    {
        UITableViewCell* uncheckCell = [tableView
                                        cellForRowAtIndexPath:self.checkedIndexPath];
        uncheckCell.accessoryType = UITableViewCellAccessoryNone;
        [tableView deselectRowAtIndexPath:indexPath animated:YES];

    }

    if([self.checkedIndexPath isEqual:indexPath])
    {
        self.checkedIndexPath = nil;
    }

    else
    {
         cellCheck = [tableView cellForRowAtIndexPath:indexPath];
        cellCheck.accessoryType = UITableViewCellAccessoryCheckmark;
        self.checkedIndexPath = indexPath;
        [tableView deselectRowAtIndexPath:indexPath animated:YES];
        NSLog(@"%@", indexPath);

    }
}
4

2 回答 2

12

如果您选择带有复选标记的单元格,则将执行此代码。

if(self.checkedIndexPath)
{
    UITableViewCell* uncheckCell = [tableView
                                     cellForRowAtIndexPath:self.checkedIndexPath];
     uncheckCell.accessoryType = UITableViewCellAccessoryNone;
     [tableView deselectRowAtIndexPath:indexPath animated:YES];
}

此代码将删除您在第一次选择期间添加的复选标记。

那么这段代码将被执行

if([self.checkedIndexPath isEqual:indexPath])
{
    self.checkedIndexPath = nil;
}

因此,只有当您再次选择相同的单元格时,复选标记才会重新出现

我认为更清洁的方式如下。

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewCell* cellCheck = [tableView
                                    cellForRowAtIndexPath:indexPath];
    cellCheck.accessoryType = UITableViewCellAccessoryCheckmark;
}

- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewCell* uncheckCell = [tableView
                                    cellForRowAtIndexPath:indexPath];
    uncheckCell.accessoryType = UITableViewCellAccessoryNone;
 }

因为您可以从 [tableView indexPathForSelectedRow] 获取 self.checkedIndexPath 的值;self.checkedIndexPath 的设置是可选的,具体取决于代码的逻辑。

于 2012-11-03T23:42:30.183 回答
0

您不会像那样直接操作单元格,将检查状态存储在某处并更改 cellForRowAtIndex 中的附件类型:

static BOOL checkedRows[100]; // example data storage

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath;
{
    checkedRows[indexPath.row] = !checkedRows[indexPath.row];
    [tableView reloadData];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;
{

    UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:@"somecell"];

    if(!cell)
    {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
    }

    cell.accessoryType = checkedRows[indexPath.row] ? UITableViewCellAccessoryCheckmark : UITableViewCellAccessoryNone;

    return cell;
}
于 2012-11-03T23:43:38.150 回答