scrollViewWillBeginDecelerating
: delegate method is called on finger up as it is moving.(from UIScrollView.h
)
But, scrollViewDidEndDragging:willDecelerate:
delegate method is also called when same state.
(called on finger up if the user dragged. decelerate is true if it will continue moving afterwards) -> from UIScrollView.h)
When I test, they are always called together.
I don't know what is the difference.
Actually, I should know when a scroll will be begun deceleration.
scrollViewWillBeginDecelerating:
is always called on finger up.