plain样式下取消tableView分区头悬停
作者:
NateLam | 来源:发表于
2016-10-13 11:37 被阅读94次#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);
}
}
}
本文标题:plain样式下取消tableView分区头悬停
本文链接:https://www.haomeiwen.com/subject/diewyttx.html
网友评论