当tableView.style=plain时,如果是使用 table.tableHeaderView = headerView;
的方式,不会出现问题,但当headerView不止一个的时候就不能用这种方式了,必须使用tableView的代理方法,如下:
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
UIView *view = [[UIView alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, 160)];
view.backgroundColor = [UIColor redColor];
return view;
}
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
return 160;
}
此时就会出现当tableView滚动到headerView的顶端时,headerView不再跟随cell滚动的情况!解决当前的问题可以通过下面的方式.
- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
CGFloat sectionHeaderHeight = 160;// 此处高度和headerView设置一致
if (scrollView.contentOffset.y<=sectionHeaderHeight&&scrollView.contentOffset.y>=0) {// 当向上滚动时,修改contentInset时headerView往上滚动
scrollView.contentInset = UIEdgeInsetsMake(-scrollView.contentOffset.y, 0, 0, 0);
}
else if (scrollView.contentOffset.y>=sectionHeaderHeight) {// headerView完全隐藏后,不再移动
scrollView.contentInset = UIEdgeInsetsMake(-sectionHeaderHeight, 0, 0, 0);
}
}
网友评论