Отключить удаление ячейки через длинный свайп


#1

у таблицы при длинном свайпе по ячейке происходит удаление, возможно ли отключить это поведение? Чтобы было ограничение в свайпе, дальше открытых actions не свайпалось

    func tableView(_ tableView: UITableView, trailingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {
        let delete = UIContextualAction(style: .destructive, title: "Delete") { (contextualAction, view, boolValue) in
           // remove
        }
        
        let edit = UIContextualAction(style: .normal, title: "Edit") { (contextualAction, view, boolValue) in
			//edit
        }
        
        let actions = UISwipeActionsConfiguration(actions: [delete, edit])
        
        return actions
    }

#2

Если я вас правильно понял
https://developer.apple.com/documentation/uikit/uiswipeactionsconfiguration/2902361-performsfirstactionwithfullswipe