去掉UITableView的section的粘性,使其不会悬停

//有时候使用UITableView所实现的列表,会使用到section,但是又不希望它粘在最顶上而是跟随滚动而消失或者出现
- (void)scrollViewDidScroll:(UIScrollView *)scrollView 
{  
    if (scrollView == _tableView) 
    {  
        CGFloat sectionHeaderHeight = 36;
 
        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的section的粘性,使其不会悬停)