• iOS 判断scrollView是否滑动到底部


     

    判断scrollView有没有滚动到视图的底部,用来判断下拉刷新的时间。等

        - (void)scrollViewDidScroll:(UIScrollView *)scrollView1

        {

            CGPoint offset = scrollView1.contentOffset;

            

            CGRect bounds = scrollView1.bounds;

            

            CGSize size = scrollView1.contentSize;

            

            UIEdgeInsets inset = scrollView1.contentInset;

            

            CGFloat currentOffset = offset.y + bounds.size.height - inset.bottom;

            

            CGFloat maximumOffset = size.height;

            

            //当currentOffset与maximumOffset的值相等时,说明scrollview已经滑到底部了。也可以根据这两个值的差来让他做点其他的什么事情

            if((maximumOffset – currentOffset)<40.0)

            {

                NSLog(@"-----刷新数据-----");

            }

            

  • 相关阅读:
    暑假学习
    暑假学习
    暑假学习
    暑假学习
    暑假学习
    经验教训+总结
    NT 时刻
    联赛模拟测试 17
    联赛模拟测试 16
    联赛模拟测试 15
  • 原文地址:https://www.cnblogs.com/Ewenblog/p/3891811.html
Copyright © 2020-2023  润新知