Detect touch in UICollectionView

1.5k Views Asked by At

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.

1

There are 1 best solutions below

0
On

It helped me:

    func scrollViewDidEndDecelerating(_ scrollView: UIScrollView) {

// Stop your timer  here

        timer?.invalidate() 
    }
}