禁止section停留

2017-09-12  本文已影响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);

   }

}

上一篇 下一篇

猜你喜欢

热点阅读