美文网首页tableview&&
取消section跟随tableView滑动

取消section跟随tableView滑动

作者: 答案在风中飘 | 来源:发表于2017-02-14 17:44 被阅读8次

只去掉header的

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

if (scrollView == self.tableView)

{

CGFloat sectionHeaderHeight = 64; //你的header高度

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);

}

}

文/番茄大叔(简书作者)

原文链接:http://www.jianshu.com/p/d212d2ce8d14

著作权归作者所有,转载请联系作者获得授权,并标注“简书作者”。

相关文章

网友评论

    本文标题:取消section跟随tableView滑动

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