美文网首页
UITableView

UITableView

作者: _Boring | 来源:发表于2017-07-20 13:28 被阅读14次

一、滑倒到顶部或底部不可滑动

CGPointoffset = scrollView.contentOffset;//scrollview当前显示区域定点相对于fram顶点的偏移量

CGRectbounds = scrollView.bounds;//原点

CGSizesize = scrollView.contentSize;//scrollview可以滚动的区域

UIEdgeInsetsinset = scrollView.contentInset;//scrollview的contentview的顶点相对于scrollview的位置

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

CGFloatmaximumOffset = size.height;

if(offset.y <=0) {

    scrollView.contentOffset =CGPointMake(0,0);

}

if(currentOffset >= maximumOffset) {//滑倒底部

    scrollView.contentOffset=CGPointMake(0, maximumOffset - bounds.size.height);

    return;

}

相关文章

网友评论

      本文标题:UITableView

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