section随着tableview一起滚动
2017-03-17 本文已影响49人
楠Y
- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
if (scrollView == _tableview)
{
CGFloat sectionHeaderHeight = 超过section最大高度;
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);
}
}