First I set the delegate to the .h file
@interface ViewController : UIViewController<UICollectionViewDataSource, UIScrollViewDelegate>
After that, just call this method in the collection file .m file
- (void)scrollViewDidScroll:(UIScrollView *)scrollView { NSLog(@"scrollViewDidScroll"); }
but do not call this method.
source share