当前位置: 代码迷 >> 综合 >> ios uitableview header不随着滚动
  详细解决方案

ios uitableview header不随着滚动

热度:18   发布时间:2023-12-15 02:13:17.0

在代码中加入以下的代码,header就不会滚动了。

//去掉UItableview headerview黏性(sticky)
- (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);
    }

  相关解决方案