objective c - How to detect that UIScrollView is scrolling or that is is dragging -
i need know on continuous basis when uiscrollview scrolling or dragging.
implement these 2 delegate methods..
- (void)scrollviewdidscroll:(uiscrollview *)sender{ //executes when scroll scrollview } - (void)scrollviewwillbegindragging:(uiscrollview *)scrollview { // execute when drag scrollview }
Comments
Post a Comment