码迷,mamicode.com
首页 > 其他好文 > 详细

tableView的plain样式的headerView的上拉过程中悬停解决方法

时间:2016-07-15 17:15:25      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:

//去掉UItableview headerview黏性(sticky) 去掉header的浮动效果

- (void)scrollViewDidScroll:(UIScrollView *)scrollView {

    if (scrollView == self.tableView)

    {

        CGFloat sectionHeaderHeight = 100; //sectionHeaderHeight

        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);

        }

    }

}

 

tableView的plain样式的headerView的上拉过程中悬停解决方法

标签:

原文地址:http://www.cnblogs.com/Ninesday/p/5674017.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!