gpt4 book ai didi

ios - 如何禁用 UITableViewCell 上的删除操作?

转载 作者:行者123 更新时间:2023-12-01 17:35:53 25 4
gpt4 key购买 nike

我有一个 UITableViewCell 我已经实现了 leadingSwipeActionsConfigurationForRowAt indexPath允许用户向右拖动单元格以将它们添加到他们的收藏夹中。但是,这样做也出现了向左拖动删除的选项。我不希望这些单元格能够被删除。有没有办法在不出现删除操作的情况下实现滑动操作?

最佳答案

试试这个

func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool {
return false
}

编辑
func tableView(_ tableView: UITableView, trailingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {

let swipeAction = UISwipeActionsConfiguration(actions: [])
swipeAction.performsFirstActionWithFullSwipe = false // This is the line which disables full swipe
return swipeAction
}

关于ios - 如何禁用 UITableViewCell 上的删除操作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48716742/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com