繁体   English   中英

虽然我有一个以编程方式选择的单元格,但indexPathForSelectedRow返回nil

[英]indexPathForSelectedRow returns nil although I have a cell programmatically selected

我有一个UITableView ,其中加载了一些应用程序设置。 我需要表是单选的,并且由于该表保存设置,因此可能会根据设置启用状态以编程方式选择某些单元格。

当前,我遇到一种奇怪的行为,如果我以编程方式选择一个单元格,则indexPathForSelectedRow返回nil (当它应返回所选单元格的索引时),因此,当我点击第二个单元格时(更改当前选定的设置)我最终选择了两个单元格(即使在我的tableView对象中将allowMultipleSelection设置为false时)。

这是我的代码:

override func viewDidLoad() {
    tableView.allowsMultipleSelection = false
}

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    let cell: UITableViewCell? = tableView.dequeueReusableCellWithIdentifier("myCell")

    if let cell = cell {
        // tableObject is an array containing settings model
        let row = tableObject[indexPath.row]
        cell.textLabel!.text = row.settingValue
        if row.selected {
            cell.setSelected(true, animated: false)
            cell.accessoryType = .Checkmark
        }
        cell.tag = row.id
    }

    return cell!
}

override func tableView(tableView: UITableView, willSelectRowAtIndexPath indexPath: NSIndexPath) -> NSIndexPath? {
    // oldIndex is always nil for the cell I called setSelected in cellForRowAtIndexPath
    if let oldIndex = tableView.indexPathForSelectedRow {
        if let oldCell = tableView.cellForRowAtIndexPath(oldIndex) {
            tableView.deselectRowAtIndexPath(oldIndex, animated: true)
            oldCell.accessoryType = .None           
        }
    }

    if let cell = tableView.cellForRowAtIndexPath(indexPath) {
        cell.setSelected(true, animated: true)
        cell.accessoryType = .Checkmark
    }

    return indexPath
}

override func tableView(tableView: UITableView, willDeselectRowAtIndexPath indexPath: NSIndexPath) -> NSIndexPath? {
    if let cell = tableView.cellForRowAtIndexPath(indexPath) {
        cell.accessoryType = .None
        tableView.deselectRowAtIndexPath(indexPath, animated: true)
    }
    return indexPath
}

知道我如何总是一次只能选择一个单元吗?

谢谢!

创建一个像

var arrSelectCell = [NSIndexPath]()

并在didSelectRowAtIndexPath处执行代码,如下所示:

override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
        if arrSelectCell.contains(indexPath) {
        if let oldCell = tableView.cellForRowAtIndexPath(indexPath) {

                if let index = arrSelectCell.indexOf(indexPath) {
                    arrSelectCell.removeAtIndex(index)
                }
            tableView.deselectRowAtIndexPath(indexPath, animated: true)
            oldCell.accessoryType = .None
        }

    }
    else
    {
        arrSelectCell.append(indexPath)
        if let selectCell = tableView.cellForRowAtIndexPath(indexPath) {
            tableView.deselectRowAtIndexPath(indexPath, animated: true)
            selectCell.accessoryType = .Checkmark
        }


    }    

并且也不要忘记在cellForRowAtIndexPath设置代码以在重用单元格之后检查已检查和未检查的单元格维护。 因此,需要编写一些代码,如下所示。

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

            let cell = tableView.dequeueReusableCellWithIdentifier("serchCell", forIndexPath: indexPath) as! SearchTableViewCell

            if arrSelectCell.contains(indexPath)
            {
                    cell.accessoryType = .Checkmark
            }
            else
            {
                    cell.accessoryType = .None
            }

            return cell
        }

以防万一有人遇到相同的行为,似乎通过cell.setSelected()选择单元格与调用tableView.selectRowAtIndexPath()方法并不相同。 选择最新的行可以完美地完成工作并解决问题。

请注意,调用tableView.reloadData()会将tableView.indexPathForSelectedRow重置为nil。

在这里,如何通过tableView.indexPathForSelectedRow完成表视图的单选:

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
    {
        let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath)
        cell.accessoryType = tableView.indexPathForSelectedRow == indexPath ? .checkmark : .none
        return cell
    }

    func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath)
    {
        if let visiblePaths = tableView.indexPathsForVisibleRows
        {
            for visibleIndexPath in visiblePaths
            {
                let cell = tableView.cellForRow(at: visibleIndexPath)
                if visibleIndexPath == indexPath
                {
                    cell?.accessoryType = .checkmark
                }
                else
                {
                    cell?.accessoryType = .none
                }
            }
        }
    }

暂无
暂无

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

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