Contents

tableView(_:dragSessionDidEnd:)

Signals the end of a drag operation involving content from the specified table view.

Declaration

optional func tableView(_ tableView: UITableView, dragSessionDidEnd session: any UIDragSession)

Parameters

  • tableView:

    The table view from which the drag operation originated.

  • session:

    The drag session object providing context for the drag operation.

Discussion

This method is called after the drag session ended, usually because the content was dropped but possibly because the drag was terminated. Use this method to close out any tasks related to the management of the drag session in your app.

Each call to this method is always preceded by a call to the tableView(_:dragSessionWillBegin:) method.

See Also

Tracking the drag session