UIScrollView direction of scrolling

2019-01-22 10:19发布

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?

2条回答
三岁会撩人
2楼-- · 2019-01-22 10:41

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");
    }
}
查看更多
甜甜的少女心
3楼-- · 2019-01-22 10:46

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

查看更多
登录 后发表回答