繁体   English   中英

单击多行时如何显示复选标记?

[英]How to I make check marks appear and disappear when I click multiple rows?

我想要一个表,当您单击不同的行时,它们会增加或丢失一个选中标记以显示它们是否已选中。

目前,我的表视图将允许我选择和取消选择不同的行。 但是,只有当我单击一个然后单击另一个时,才会出现一个复选标记。 取消选择时也会发生同样的情况,我单击带有复选标记的行,然后单击另一行,复选标记消失。

这是我目前的代码:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString * exerciseChoiceSimpleTableIdentifier = @"ExerciseChoiceSimpleTableIdentifier";
    UITableViewCell * exerciseChoiceCell = [tableView dequeueReusableCellWithIdentifier:exerciseChoiceSimpleTableIdentifier];

    if (exerciseChoiceCell == nil) {
        exerciseChoiceCell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:exerciseChoiceSimpleTableIdentifier];
    }

    //Here we get each exercise we want to display
    BExercise * exercise = [[_data getExerciseCompleteList] objectAtIndex:indexPath.row];

    //Name the cell after the exercises we want to display
    exerciseChoiceCell.textLabel.text = exercise.name;

    return exerciseChoiceCell;
}

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

    if ([tableView cellForRowAtIndexPath:indexPath].accessoryType == UITableViewCellAccessoryNone)
    {
        // Uncheck the row
        [tableView deselectRowAtIndexPath:indexPath animated:YES];
        [tableView cellForRowAtIndexPath:indexPath].accessoryType = UITableViewCellAccessoryCheckmark;
    }
    else
    {
    // Check the row
    [tableView deselectRowAtIndexPath:indexPath animated:YES];
    [tableView cellForRowAtIndexPath:indexPath].accessoryType = UITableViewCellAccessoryNone;

    }
}

我认为问题是与选择手指有关,而不是在手指从按钮上松开时在内部进行修饰和取消选择。

我期望答案很简单,但是关于stackflow的所有类似问题都没有解决检查标记延迟出现的问题。

理解这个问题的根源以及如何解决它将是很棒的。

改变方法

   -(void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath 

通过

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

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM