Well, a UICollectionView inherits from a UIScrollView, so you can just check which of the scrolling triggered the braking from the delegate method.
- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView { if (scrollView == collectionViewOne) { }else if (scrollView == collectionViewTwo) { }else{
source share