UITableViewCells中的选中标记显示不正确

时间:2015-12-19 11:01:57

标签: ios swift uitableview

我有一个小的可滚动tableView,它显示大约8行,当我选择一行时会出现一个复选标记,当我再次选择它时它会消失。

问题是,当我向下滚动并重复使用单元格时,会自动检查更多行。跟踪哪些行需要选中标记以便不会发生这种情况的最佳做法是什么。我已经到处寻找但是没有找到适合我的Swift解决方案。

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

    let cell = tableView.dequeueReusableCellWithIdentifier("cell")! as UITableViewCell

    cell.textLabel?.text = "\(searchResults.usernameUserSearchArray[indexPath.row])"

    return cell
}

func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {

    let selectedCell = tableView.cellForRowAtIndexPath(indexPath)

    if selectedCell?.accessoryType == UITableViewCellAccessoryType.Checkmark {

        selectedCell?.accessoryType = UITableViewCellAccessoryType.None

    } else {

        selectedCell?.accessoryType = UITableViewCellAccessoryType.Checkmark
    }

    tableView.reloadData()
}

3 个答案:

答案 0 :(得分:6)

这样的事情不适合你吗?我没有测试过,因为我不在Mac上。

var selectedCells = [NSIndexPath]()

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCellWithIdentifier("cell")!
    cell.accessoryType = selectedCells.contains(indexPath) ? .Checkmark : .None

    return cell
}

func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
    let selectedCell = tableView.cellForRowAtIndexPath(indexPath)

    selectedCells.append(indexPath)

    if selectedCell?.accessoryType == .Checkmark {

        selectedCell?.accessoryType = .None

        selectedCells = selectedCells.filter {$0 != indexPath}

    } else {

        selectedCell?.accessoryType = .Checkmark
    }
}

答案 1 :(得分:1)

didSelectRowAtIndexPath中创建一个NSMutableArray,它存储单元格的选定索引,并在cellForRowAtIndexPath中使用if条件从数组中检查索引路径是否在数组中可用。如果可用,则为索引路径设置附件类型选中标记为真。

答案 2 :(得分:1)

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

    let cell = tableView.dequeueReusableCellWithIdentifier("cell")! as UITableViewCell

    cell.textLabel?.text = arr.objectAtIndex(indexPath.row) as? String
    if(arr .objectAtIndex(indexPath.row) as! String  == selectedValue.objectAtIndex(indexPath.row) as! String)
    {
       cell.accessoryType = UITableViewCellAccessoryType.Checkmark
    }
    else
    {
        cell.accessoryType = UITableViewCellAccessoryType.None
    }
    return cell
}

func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {

    let selectedCell = tableView.cellForRowAtIndexPath(indexPath)

    if selectedCell?.accessoryType == UITableViewCellAccessoryType.Checkmark {

        selectedCell?.accessoryType = UITableViewCellAccessoryType.None
        selectedValue .removeObject(arr .objectAtIndex(indexPath.row))

    } else {

        selectedCell?.accessoryType = UITableViewCellAccessoryType.Checkmark
        selectedValue .addObject(arr .objectAtIndex(indexPath.row))
    }


}