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 Horizontal
with Paging Enabled
. My problem is that i want to keep the tack of the current page number on which the user is, so i created an int
variable and now want to add or subtract it by 1 each time the user swipes right or left. I tried using scrollView
's delegate
- (void)scrollViewDidScroll:(UIScrollView *)scrollView
but when the user swipes right or left, it is called as many number of the times as the number of columns on a page in the UICollectionView
plus it wont let me know that whether the user went to the next page or the previous one.