美文网首页
tableview的headerview不随着移动

tableview的headerview不随着移动

作者: 一笔春秋 | 来源:发表于2017-08-29 20:36 被阅读6次

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

    CGFloat sectionHeaderHeight = 40;

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

   {

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

    } 

    else if (scrollView.contentOffset.y>=sectionHeaderHeight)

    {

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

    }

}

相关文章

网友评论

      本文标题:tableview的headerview不随着移动

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