Contents

collectionView(_:didDeselectItemsAt:)

Notifies the delegate object that one or more items were deselected.

Declaration

@MainActor optional func collectionView(_ collectionView: NSCollectionView, didDeselectItemsAt indexPaths: Set<IndexPath>)

Parameters

  • collectionView:

    The collection view notifying you of the selection change.

  • indexPaths:

    The set of Nsindexpath objects corresponding to the items that were deselected.

Discussion

After the user successfully deselects one or more items, the collection view calls this method to let you know that the items are no longer selected. Use this method to respond to the selection change and to make any necessary adjustments to your content or the collection view.

This method is not called when you set the selection programmatically using the methods of the NSCollectionView class.

See Also

Managing the Selection