// Получить индекс из жеста касания, потому что отменил выбор
@objc func tapBlurButton(_ sender: UILongPressGestureRecognizer) {
let location = sender.location(in: collectionView) // point of touch in collectionView
if let indexPath = collectionView.indexPathForItem(at: location) { // indexPath of touch location
let indexPaths = IndexPath(item: indexPath , section: 0)
collectionView.selectItem(at: indexPaths, animated: true, scrollPosition: .top)
collectionView.delegate?.collectionView!(collectionView, didDeselectItemAt: indexPaths)
}
}
// Надеюсь, это работает для вас!спасибо