7

I use this method to organize paging:

- scrollViewDidEndDecelerating

When I scroll my UICollectionView I change some content on my screen. But I have few UICollectionView on my screen and I need it just for one.

Matrosov Oleksandr
  • 25,505
  • 44
  • 151
  • 277

1 Answers1

24

Well, UICollectionView inherits from UIScrollView, so you could just check which scroll view did end decelerating from within the delegate method.

- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
{
    if (scrollView == collectionViewOne) {

    }else if (scrollView == collectionViewTwo) {

    }else{
            //something else
    }
}
Mick MacCallum
  • 129,200
  • 40
  • 280
  • 281