Alex Tau
Alex Tau

Reputation: 2639

UIScrollView direction of scrolling

I would like to copy the effect seen in Pinterest app, where they hide top and bottom bars depending on the direction of scrolling. My question is: what is the correct way to determine which way the UIScrollView is scrolling?

Upvotes: 6

Views: 10028

Answers (2)

Alex Tau
Alex Tau

Reputation: 2639

This is the solution:

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

-(void)scrollViewDidScroll:(UIScrollView *)scrollView {
    if (scrollView.contentOffset.y<pointNow.y) {
        DLog(@"down");
    } else if (scrollView.contentOffset.y>pointNow.y) {
        DLog(@"up");
    }
}

Upvotes: 30

Rui Peres
Rui Peres

Reputation: 25917

Use the methods from UIScrolViewDelegate's protocol. You can find the documentation here.

Upvotes: 1

Related Questions