美文网首页
iOS判断滚动

iOS判断滚动

作者: xiaoli飞刀 | 来源:发表于2017-06-12 14:41 被阅读7次

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

CGPoint offset = aScrollView.contentOffset;

CGRect bounds = aScrollView.bounds;

CGSize size = aScrollView.contentSize;

UIEdgeInsets inset = aScrollView.contentInset;

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

 float h = size.height;

// NSLog(@"offset: %f", offset.y);

// NSLog(@"content.height: %f", size.height);

// NSLog(@"bounds.height: %f", bounds.size.height);

// NSLog(@"inset.top: %f", inset.top);

// NSLog(@"inset.bottom: %f", inset.bottom);

// NSLog(@"pos: %f of %f", y, h);

float reload_distance = 10;

if(y > h + reload_distance) {

        NSLog(@"load more rows");

}

}

相关文章

网友评论

      本文标题:iOS判断滚动

      本文链接:https://www.haomeiwen.com/subject/deulqxtx.html