4
votes
How to detect when a UIScrollView has finished scrolling
I think scrollViewDidEndDecelerating is the one you want. Its UIScrollViewDelegates optional method:
- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
…
