Contents

collectionView(_:didEndDisplaying:forRepresentedObjectAt:)

Notifies the delegate that the specified item was removed from the collection view.

Declaration

@MainActor optional func collectionView(_ collectionView: NSCollectionView, didEndDisplaying item: NSCollectionViewItem, forRepresentedObjectAt indexPath: IndexPath)

Parameters

  • collectionView:

    The collection view that removed the item.

  • item:

    The item that was removed.

  • indexPath:

    The index path of the item.

Discussion

The collection view calls this method after removing an item from its content. You can use this method to track the removal of items and perform related tasks.

See Also

Tracking the Addition and Removal of Items