监测uitableview 向上滑动和向下滑动的事件

来源:互联网 发布:eplan软件大小 编辑:程序博客网 时间:2024/06/10 19:59
- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
    CGFloat height = _varietyTableView.frame.size.height;
    CGFloat distanceFromButtom = _varietyTableView.contentSize.height - _varietyTableView.contentOffset.y;
    if (distanceFromButtom == height)
    {
        NSLog(@"滑动到底了");
    }
    
    if (_varietyTableView.contentOffset.y == 0)
    {
        NSLog(@"滑动到顶了");
    }
}
0 0