让UITableView的headerView或footerView跟随cell一起滚动

以headerView为例(footerView处理方式类似),以下四种方式均有独到之处: 

1、无分区 最简单也最常见。将headerView设置为整个tableView的headerView,而不是 section 0 的headerView
self.tableView.tableHeaderView = headerView。

2、多个section 设置 tableView 的 style 为 UITableViewStyleGrouped,然后

<span style="font-size:14px;">- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
    return 分区数;
}
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
    if (section == 0) {
       <span>	</span>return 1; // 注意当某个分区不需要headerView时,也需要重新设置高度。(Group时有默认高度)
    }
    return 170;
}
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
    if (section == 0) {
        return nil;
    }
    return headerView; 
}</span>

这样确实可以让 headerView ,在滚动tableView的时候,跟随着cell的内容一起滚动。但是cell都被加上了边框,而且cell的水平显示范围变窄了。

      但是我们可以尝试调整cell的Frame,或者自定义cell。 

 3、多个section 将每个分区第一个cell作为分区的headerView

       重写cell,就不贴代码了,写的代码较方法2差不多,但是效果非常好。

4、去掉UItableview headerview黏性 (不推荐,但思路不错,方法应该还可以再优化下)

<span style="font-size:14px;">- (void)scrollViewDidScroll:(UIScrollView *)scrollView {  
    if (scrollView == self.tableView)  
    {  
        CGFloat sectionHeaderHeight = HeaderHeight;  
        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);  
        }  
    }  
}</span>

但是,当可滚动的位置太小,scrollView会停在滚到的位置上。




 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值