IOS Swift TableView编辑索引路径中行的操作

我想知道是否有一个选项可以关闭表格视图中的编辑菜单(如
screenshot所示),这是我们向右滑动时得到的.我希望菜单在我选择一个选项后立即关闭,在我的情况下,即使我选择了任何一个选项,它也不会关闭.它只在我选择屏幕上的任何位置时关闭.

以下是我正在使用的代码

    func tableView(tableView: UITableView, commitEditingStyle editingStyle: UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath) {

}

func tableView(tableView: UITableView!, canEditRowAtIndexPath indexPath: NSIndexPath!) -> Bool {
    return true
}

func tableView(tableView: UITableView, editActionsForRowAtIndexPath indexPath: NSIndexPath) -> [UITableViewRowAction]?
{
    let update = UITableViewRowAction(style: .Normal, title: "Update") { action, index in
        print("update")
    }
    let delete = UITableViewRowAction(style: .Default, title: "Delete") { action, index in
        print("Delete")

    }
    return [delete, update]
} 

《IOS Swift TableView编辑索引路径中行的操作》

最佳答案 你需要重新加载特定的单元格,它关闭了选项.

为此,您可以使用以下代码,这可以解决您的问题.

self.tableView.reloadRowsAtIndexPaths([indexPath], withRowAnimation: UITableViewRowAnimation.Top)

你也可以使用

self.tableView.setEditing(false, animated: true)

快乐的编码.

点赞