在tableview中重复检查标记

时间:2016-01-17 10:53:28

标签: ios swift tableview sections checkmark

我在我的应用中实现了一个带有section和chechmark的tableView。 当我点击一个单元格时遇到问题,单元格上会出现复选标记,但会在12行后重复。

我认为问题来自我的部分," didSelectRowAtIndexPath"函数使用" indexPath.row"识别单元格,但就像我有一些部分一样,我还需要指定" IndexPath.section"确定点击哪个部分的单元格。

这是我的代码:

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

    let cell = tableView.dequeueReusableCellWithIdentifier("Cell") as UITableViewCell!
    cell.textLabel?.text = objectsArray[indexPath.section].sectionObjects[indexPath.row]

return cell
}

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    //Je compte le nombre de ligne dans tableArray et créer autant de cellule que de ligne
    return objectsArray[section].sectionObjects.count
}

func numberOfSectionsInTableView(tableView: UITableView) -> Int {
    return objectsArray.count
}

func tableView(tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
     return objectsArray[section].sectionName
}

func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
    tableView.deselectRowAtIndexPath(indexPath, animated: true)

    //On affiche le boutton pour sauvegarder les catégories
    SaveCategorie.hidden = false

    if let cell = tableView.cellForRowAtIndexPath(indexPath) {
        //Si la cellule est déja cochée
        if cell.accessoryType == .Checkmark
        {
            //je la décoche
            cell.accessoryType = .None 
        }
            else {
            cell.accessoryType = .Checkmark
            }
    }
}

尝试存储该项目:

var selectedRowNumber: NSMutableIndexSet!

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

        let cell = tableView.dequeueReusableCellWithIdentifier("Cell") as UITableViewCell!
        cell.textLabel?.text = objectsArray[indexPath.section].sectionObjects[indexPath.row]

        cell.accessoryType = .None
        if let selectedRowNumber = self.selectedRowNumber {
            if indexPath.row == selectedRowNumber {
                cell.accessoryType = .Checkmark
            }
        }
        return cell
}

func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
        tableView.deselectRowAtIndexPath(indexPath, animated: true)

        //On affiche le boutton pour sauvegarder les catégories
        SaveCategorie.hidden = false

        if let cell = tableView.cellForRowAtIndexPath(indexPath) {
            //Si la cellule est déja cochée


            cell.accessoryType = .Checkmark
            self.selectedRowNumber.addIndex(indexPath.row)

            dump(CatChoosen)
            dump(selectedRowNumber)
        }
    }

但我明白了:

  

致命错误:在解包可选值时意外发现nil

1 个答案:

答案 0 :(得分:0)

重复使用TableViewCells,这就是为什么你在第12行再次看到它,重新使用相同的单元格。

保存数据中每个项目的复选标记。然后在加载单元格时,检查是否设置了标志,如果是,则设置复选标记。如果没有,保持清除。