Detecting the bottom “bounce” of UITableView

瘦欲@ 提交于 2019-11-28 01:00:45

问题


I have a table view that performs an animation when the user scrolls down on a UITableView (push thumb up) and a different animation when the user scrolls up (Push thumb down) on a UITableView.

The problem is when the user reaches the bottom of a UITableView and it bounces, the table registers an upward and then downward movement, thus performing the animation when it should not.

This same exact behavior happens when scrolling to the top; however, I am able to detect it like so:

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

    self.lastContentOffset = scrollView.contentOffset;

}


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

    // Check if we are at the top of the table
    // This will stop animation when tableview bounces

    if(self.tableView.contentOffset.y < 0){
        // Dont animate, top of tableview bounce


    } else {

        CGPoint currentOffset = scrollView.contentOffset;

        if (currentOffset.y > self.lastContentOffset.y) {

            // Downward animation
            [self animate:@"Down"];

        } else {

            // Upward
            [self animate:@"Up"];

        }

        self.lastContentOffset = currentOffset;

    }

}

This works perfectly, but for the life of me I cannot figure out an if condition to detect the bottom as well. I am sure it is simple and I just cant figure it out.


回答1:


How about something like this:

if (self.tableView.contentOffset.y >= (self.tableView.contentSize.height - self.tableView.bounds.size.height)) 
{
    // Don't animate
}



回答2:


In todays times (Xcode 7), below code should solve most use cases since it accounts for UIScrollView (and it's subclasses UITableView and UICollectionView) insets, single storyboard for multiple devices (i.e. size classes) -

func scrollViewDidScroll(scrollView: UIScrollView) {
    if (Int(scrollView.contentOffset.y + scrollView.frame.size.height) == Int(scrollView.contentSize.height + scrollView.contentInset.bottom)) {
        if !isFetching {
            isFetching = true
            fetchAndReloadData(true)
        }
    }
}

PS: Notice Int() and == is important to trigger event once.



来源:https://stackoverflow.com/questions/18191686/detecting-the-bottom-bounce-of-uitableview

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!