vote up 1 vote down star

UIScrollViewDelegate has got two delegate methods scrollViewDidScroll: and scrollViewDidEndScrollingAnimation: but neither of these tell you when scrolling has completed. scrollViewDidScroll only notifies you that the scroll view did scroll not that it has finished scrolling.

The other method scrollViewDidEndScrollingAnimation only seems to fire if you programmatically move the scroll view not if the user scrolls.

Does anyone know of scheme to detect when a scroll view has completed scrolling?

flag

3 Answers

vote up 3 vote down check

Look at the UIScrollViewDelegate docs here:

http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIScrollViewDelegate_Protocol/Reference/UIScrollViewDelegate.html

The method you're looking for is: scrollViewDidEndDecelerating:

link|flag
vote up 0 vote down

Yes apple are crazy... I dont understand a lot of the inconsistently in the start/end style calls out of the sdk.. the 320 implementations are so mucbh better.. here is a patch to get consistent start/ends of on the scrolls.

add the lines;

-(void)scrollViewDidScroll:(UIScrollView *)sender 
{   
[NSObject cancelPreviousPerformRequestsWithTarget:self];
    //enshore that the end of scroll is fired because apple are twats...
    [self performSelector:@selector(scrollViewDidEndScrollingAnimation:) withObject:nil afterDelay:0.3]; 

...
}

-(void)scrollViewDidEndScrollingAnimation:(UIScrollView *)scrollView
{
    [NSObject cancelPreviousPerformRequestsWithTarget:self];
...
}
link|flag
vote up 4 vote down

I think scrollViewDidEndDecelerating is the one you want. Its UIScrollViewDelegates optional method:

- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView

Tells the delegate that the scroll view has ended decelerating the scrolling movement.

UIScrollViewDelegate documentation

link|flag
Er, I gave the same answer. :) – Suvesh Pratapa Jun 14 at 17:46
Doh. Somewhat cryptically named but its exactly what I was looking for. Should have read the documentation better. Its been a long day... – Michael Gaylord Jun 14 at 18:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.