2019-06-18a few seconds read (About 30 words)How to make UIPanGestureRecognizer work with horizontal swipe in UICollectionViewIssue #315 123456extension PanCollectionViewController: UIGestureRecognizerDelegate { func gestureRecognizerShouldBegin(_ gestureRecognizer: UIGestureRecognizer) -> Bool { let velocity = panGR.velocity(in: panGR.view) return abs(velocity.y) > abs(velocity.x) }}#swiftiOS