Xcode 13 - UITableView Swipe options 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.

Sorry for the very basic question. On simulator, how do you swipe ? You need to click and swipe, not just swipe.

Xcode 13 - UITableView Swipe options are not working
 
 
Q