有时候根据不同需求,TableView的区头可以悬停也可以不悬停,我们可以通过设置TableView的Plain风格或者group风格,但是Plain风格是悬停的,在这里我们让Plain风格的TableView的区头可以”不悬停”,废话不多说,上代码。
- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
if(scrollView == self.myTab) {
CGFloat sectionHeaderHeight = 40;
if (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);
}
}
}
是不是很简单,每天更新小功能,记得点赞加关注哦
网友评论