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

在UITableViewStylePlain情况下sectionHeader可以与tableview一起滑动的解决方法

时间:2016-02-05 18:50:32      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:

-(void)scrollViewDidScroll:(UIScrollView *)scrollView
{
    CGFloat sectionHeaderHeight = 20;
    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);
    }
}

在 -(void)scrollViewDidScroll:(UIScrollView *)scrollView方法中添加上诉代码即可

在UITableViewStylePlain情况下sectionHeader可以与tableview一起滑动的解决方法

标签:

原文地址:http://www.cnblogs.com/cityingma/p/5183154.html

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