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 = collectionView.contentOffset.x
let w = collectionView.bounds.size.width
let currentPage = Int(ceil(x/w))
print("Current Page: \(currentPage)")
}