码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 去掉UItableview header(footer)view黏性(sticky)?

时间:2014-10-08 15:07:05      阅读:473      评论:0      收藏:0      [点我收藏+]

标签:style   color   io   os   ar   sp   c   on   cti   

#pragma mark -- UIScrollViewDelegate 代理

#pragma mark 去掉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);

    }

}

iOS 去掉UItableview header(footer)view黏性(sticky)?

标签:style   color   io   os   ar   sp   c   on   cti   

原文地址:http://blog.csdn.net/alincexiaohao/article/details/39891153

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