我能够通过以不同方式触发“真实”编辑模式来解决这个问题。
在我的UITableViewController
:
class MyTableViewController: UITableViewController {
var realEditMode: Bool = false
func setRealEditing(_ editing: Bool) {
realEditMode = editing
setEditing(realEditMode, animated: true)
}
// See Note 1 below
@available(iOS 11.0, *)
override func tableView(_ tableView: UITableView, trailingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration {
guard let item = itemForIndexPath(indexPath) else {
return UISwipeActionsConfiguration(actions: [])
}
if realEditMode {
return UISwipeActionsConfiguration(actions: [
buildActionConfiguration(.delete, fromIndexPath: indexPath)
])
} else {
return UISwipeActionsConfiguration(actions: [
buildActionConfiguration(.read, fromIndexPath: indexPath)
])
}
}
@available(iOS 11.0, *)
func buildActionConfiguration(_ action: MyCellActionEnum, fromIndexPath indexPath: IndexPath) -> UIContextualAction {
// logic to build `UIContextualAction`
}
}
在我的UITableViewCell
检查中,editing
标志是通过手动触发还是通过滑动编辑触发设置的:
class MyCell: UITableViewCell {
var myTableViewController: MyTableViewController?
override func setEditing(_ editing: Bool, animated: Bool) {
if editing && !(myTableViewController?.realEditMode ?? true) {
return
}
super.setEditing(editing, animated: animated)
}
}
然后在 UI 中的编辑按钮上,我改为setEditing(true/false, animated: true)
改为setRealEditing(true/false)
。
注1
我发现的一个问题是,使用时trailingSwipeActionsConfigurationForRowAt
删除按钮(⛔️)不再起作用。点击它不会触发确认滑动。
我发现必须存在一个trailingSwipeActionsConfigurationForRowAt
用 aUIContextualAction
初始化的a UIContextualAction(style: .destructive)
(即具有破坏性风格)。这是然后用于显示删除确认的项目。
但是,当使用常规滑动操作时,我不希望该项目可见,因此只显示一个“真正的编辑模式”,我使用了realEditMode
标志。
这对我有用,而且看起来并不太老套。如果出现任何更官方的消息,我非常乐意更改已接受的答案。