如何更改 UIContextualAction 滑动长度并添加 "release to cancel" 功能?

How to change UIContextualAction swipe length and add "release to cancel" feature?

目前,我的 TableView 中有一个滑动操作,可以在相应的单元格上滑动执行自定义操作。但是,我想更改我必须拖动多远才能获得默认触觉反馈以指示滑动完成。另外,我想添加一个功能,如果动作没有完成而不是留在屏幕上,它会自动隐藏滑动动作。到目前为止,这是我的代码:

override func tableView(_ tableView: UITableView, leadingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {

    let customRowAction = UIContextualAction(style: .normal, title: "Action") {(action, view, completed)  -> Void in

        //perform updates to data

        completed(true)

    }

    let configuration = UISwipeActionsConfiguration(actions: [customRowAction])

    return configuration
}

我想实现类似于 Apollo reddit 应用程序的效果。如有任何帮助,我们将不胜感激!

内置行滑动机制的设计细节不是由你决定的。要么接受它们,要么根本不使用它们(从头开始编写你自己的滑动机制)。