I have a UIScrollView with only horizontal scrolling allowed, and I would like to know which direction (left, right) the user scrolls. What I did was to subclass the UIScrollView and override the touchesMoved method:

    - (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
    [super touchesMoved:touches withEvent:event];

    UITouch *touch = [touches anyObject];
    float now = [touch locationInView:self].x;
    float before = [touch previousLocationInView:self].x;
    NSLog(@"%f %f", before, now);
    if (now > before){
        right = NO;
        NSLog(@"LEFT");
    }
    else{
        right = YES;
        NSLog(@"RIGHT");

    }

}

But this method sometimes doesn't get called at all when I move. What do you think?

link|improve this question

74% accept rate
See my response below -- you should be using the scroll view delegates to do this. – Answerbot Nov 1 '10 at 23:53
feedback

2 Answers

up vote 25 down vote accepted

Determining the direction is fairly straightforward, but keep in mind that the direction can change several times over the course of a movement. For example, if you have a scrollview with paging turned on and the user swipes to go to the next page, the initial direction could be rightward, but if you have bounce turned on, it will briefly be going in no direction at all and then briefly be going leftward.

To determine the direction, you'll need to use the UIScrollView scrollViewDidScroll delegate. In this sample, I created a variable named lastContentOffset which I use to compare the current content offset with the previous one. If it's greater, then the scrollView is scrolling right. If it's less then the scrollView is scrolling left:

- (void)scrollViewDidScroll:(UIScrollView *)sender {
int scrollDirection;
if (lastContentOffset > scrollView.contentOffset.x)
    scrollDirection = RIGHT;
else if (lastContentOffset < scrollView.contentOffset.x) 
    scrollDirection = LEFT;

lastContentOffset = scrollView.contentOffset.x;

}

I'm using the following enum to define direction. Settings first value to NONE has the added benefit of making that direction the default when initializing variables:

enum DIRECTION {
    NONE,
    RIGHT,
    LEFT,
    UP,
    DOWN,
    CRAZY,
};
link|improve this answer
This is a good answer. Wish I could tick it for you. – Ian1971 Jan 10 '11 at 16:27
feedback

The answer by Answerbot using scrollViewDidScroll is a good way to find the current direction.

If you want to know the direction, only after the user has finished scrolling you can use this:

- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView {
  _lastContentOffset = scrollView.contentOffset.x;
}


- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView {

  if (_lastContentOffset < (int)scrollView.contentOffset.x) {
    // moved right
  }
  else {
    // moved left
  }  
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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