在這個方法里,判斷
-(void)scrollViewDidScroll:(UIScrollView*)scrollView {
?? if(scrollView ==self.MeTableView){
? ? ? ? ? ? ? ? CGFloat ? ?sectionHeaderHeight =200; ? ?// 200 自定義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);
? ? ? ? ? ? ? ? ? }
? ? ? }
}