plain样式下取消tableView分区头悬停

2016-10-13  本文已影响94人  NateLam
#pragma mark 取消分区头悬停
-(void)scrollViewDidScroll:(UIScrollView *)scrollView{

if(scrollView == _tableView) {
    
    CGFloat sectionHeaderHeight = 50 * SCALE_HEIGHT;
    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);
    }
}
}
上一篇 下一篇

猜你喜欢

热点阅读