I need to stop autorotatation, if user touches to photo slider. I use UITapGestureRecognizer to detect touch at UICollectionView:
override func viewDidLoad() {
super.viewDidLoad()
let tapGesture = UITapGestureRecognizer(target: self, action: #selector(self.tapCollectionView(_:)))
collectionView.addGestureRecognizer(tapGesture)
}
func tapCollectionView(_ sender: UITapGestureRecognizer) {
print("touch")
}
It works when I tap on collection view. But when I'm touching collection view and scrolling this collection view, my function 'tapCollectionView' is not called.
It helped me: