How to make UIPanGestureRecognizer work with horizontal swipe in UICollectionView

Issue #315

1
2
3
4
5
6
extension PanCollectionViewController: UIGestureRecognizerDelegate {
func gestureRecognizerShouldBegin(_ gestureRecognizer: UIGestureRecognizer) -> Bool {
let velocity = panGR.velocity(in: panGR.view)
return abs(velocity.y) > abs(velocity.x)
}
}

Comments