码迷,mamicode.com
首页 > 其他好文 > 详细

监视scrollview是否滚动到底

时间:2014-09-29 18:36:21      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:sp   c   on   log   r   ad   ef   size   bs   

//监视scrollview是否滚动到底

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

    [refreshHeaderViewegoRefreshScrollViewDidScroll:scrollView];//下拉刷新

    CGPoint contentOffsetPoint = _tableView.contentOffset;

    CGRect frame = _tableView.frame;

    if (contentOffsetPoint.y == _tableView.contentSize.height - frame.size.height || _tableView.contentSize.height < frame.size.height

    {

        NSLog(@"scroll to the end");

        self.btnLoad.hidden = NO;

    }

}

监视scrollview是否滚动到底

标签:sp   c   on   log   r   ad   ef   size   bs   

原文地址:http://www.cnblogs.com/sanjianghuiliu/p/4000593.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!