如何使用UISwipeActionsConfiguration设置删除单元格的延迟?

时间:2019-02-18 09:59:23

标签: swift uiswipeactionsconfiguration

我正在创建任务列表。您可以通过滑动单元格并单击滑动按钮来标记任务和完成。 .destructive样式使单元格立即消失,在这里看起来不太好。我想让它慢一点(可以先消失然后消失)。

我正在学习Swift,不知道该怎么做,并且在互联网上找不到任何提示。有人可以帮我吗?

这是我的功能:

override func tableView(_ tableView: UITableView, trailingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {
        let markAsDone = UIContextualAction(style: .destructive, title: "DONE") { (doneAction, view, isSuccess) in
            print("User marked task as done")
            isSuccess(true)
        }
        markAsDone.backgroundColor = UIColor.lightGray
        return UISwipeActionsConfiguration(actions: [markAsDone])
    }

1 个答案:

答案 0 :(得分:0)

您可以尝试这样的事情

tableView.beginUpdates()
tableView.deleteRows(at: indexPath, with: .fade) // Use your desired indexPath
tableView.endUpdates()