// 去掉UItableview headerview黏性(sticky)
- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
CGFloat sectionHeaderHeight = 40;
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 headerview黏性(sticky) - (void)scrollViewDidScroll:(UIScrollView *)scrollView {
最新推荐文章于 2023-03-21 13:33:51 发布
本文介绍了一种方法来去除UITableView中头部视图的黏性效果,通过重写scrollViewDidScroll方法并根据scrollView.contentOffset.y的值调整contentInset,实现不同滚动位置下头部视图的隐藏或显示。
摘要由CSDN通过智能技术生成