Marlhex
Marlhex

Reputation: 1979

How to disable trailing swipe on UITableView Swift?

How to ignore the right to left swipe or the Trailing swipe, does anyone know how to accomplish this?

Upvotes: 0

Views: 462

Answers (1)

Andrey Solera
Andrey Solera

Reputation: 2402

override func tableView(_ tableView: UITableView, trailingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {
        let swipeAction = UISwipeActionsConfiguration(actions: [])
        return swipeAction
    }

Upvotes: 2

Related Questions