美文网首页
去除UITableView SectionHeader的粘性

去除UITableView SectionHeader的粘性

作者: lancely | 来源:发表于2016-04-26 15:46 被阅读108次
    - (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);
        }
    }
    

    相关文章

      网友评论

          本文标题:去除UITableView SectionHeader的粘性

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