I want to perform some action when scrollview
finish scrolling, so I wrote that acton in scrollViewDidEndScrollingAnimation
delegate method. It is working fine when rect is not visible and scrollview scrolls to new rect. But when rect is already visible scrollViewDidEndScrollingAnimation
method will not be called and so the method written inside scrollViewDidEndScrollingAnimation
will not get called. But I want to call that action, can anyone knows how to call that method when scrollview finish scrolling?
Thanks in advance!