Reputation: 1979
How to ignore the right to left swipe or the Trailing swipe, does anyone know how to accomplish this?
Upvotes: 0
Views: 462
Reputation: 2402
override func tableView(_ tableView: UITableView, trailingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {
let swipeAction = UISwipeActionsConfiguration(actions: [])
return swipeAction
}
Upvotes: 2