I\'m looking to detect if (not when) a UIScrollView
is scrolling.
i.e.
BOOL isScrolling = myscrollview.scrolling;
How woul
- (void)scrollViewDidEndScrollingAnimation:(UIScrollView *)scrollView;
use a flag to save current scroll status? it could only solve the setContentOffset:animated: problem.
The "scrolling" is just an effect, there are many ways that make a scrollview "scrolling", e.g. set the content offset continuously. So there should be NO answer for this question.