I tried finding this question for a while but could not find this problem\'s answer.
My problem is that i have a UICollectionView and the Scroll Direction is
func scrollViewDidEndDecelerating(_ scrollView: UIScrollView) {
let x = scrollView.contentOffset.x
let w = scrollView.bounds.size.width
let currentPage = Int(ceil(x/w))
// Do whatever with currentPage.
}