Enabling can edit
UITableViewDiffableDataSource<ActiveCallsTableViewController.Section, CallId> {
override func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool {
return true
}
Usage
override func tableView(_ tableView: UITableView, trailingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? { }
This method not getting called when I run the app from simulator, but in real device it is working correctly.