美文网首页
禁止section停留

禁止section停留

作者: 有偶像包袱的程序狗 | 来源:发表于2017-09-12 14:46 被阅读15次

#pragma mark -禁止section停留

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

    CGFloatsectionHeaderHeight =50;

    if(scrollView.contentOffset.y<=sectionHeaderHeight&&scrollView.contentOffset.y>=0) {

    scrollView.contentInset=UIEdgeInsetsMake(-scrollView.contentOffset.y,0,0,0);

    }elseif(scrollView.contentOffset.y>=sectionHeaderHeight) {

    scrollView.contentInset=UIEdgeInsetsMake(-sectionHeaderHeight,0,0,0);

   }

}

相关文章

网友评论

      本文标题:禁止section停留

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