0

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

我正在学习 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])
    }
4

1 回答 1

0

你可以试试这样的

tableView.beginUpdates()
tableView.deleteRows(at: indexPath, with: .fade) // Use your desired indexPath
tableView.endUpdates()
于 2019-02-18T10:05:54.483 回答