collectionView(_:dragSessionDidEnd:)
Notifies you that a drag session ended for the collection view.
Declaration
optional func collectionView(_ collectionView: UICollectionView, dragSessionDidEnd session: any UIDragSession)Parameters
- collectionView:
The collection view from which the drag operation originated.
- session:
The drag session that ended.
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 balanced by a call to the collectionView(_:dragSessionWillBegin:) method.