Using TableViewDiffableDatasource in iOS 15.2 the table view cell swipe actions are not working

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.

On simulator, how do you swipe ? You need to click and swipe, not just swipe.

Using TableViewDiffableDatasource in iOS 15.2 the table view cell swipe actions are not working
 
 
Q