美文网首页
设置headerInsectionView不悬浮

设置headerInsectionView不悬浮

作者: sy随缘 | 来源:发表于2018-06-04 09:38 被阅读0次

一、设置headerInsectionView不悬浮

UITableView有两个headerView:tableHeaderView、和headerInsectionView(组头视图)。

给tableView添加这两个View:

tableHeaderView是通过tableView.tableHeaderView = XXXView 的方式添加的,

而headerInsectionView是通过- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section代理方法添加的。

UITableView的Style为Plain时,当tableView上移顶端的tableHeaderView会跟着滑出窗口,而headerInsectionView则会悬浮固定在窗口顶端不随着滑动继续上移。

UITableView的Style为Grouped时,当tableView上移顶端的tableHeaderView会跟着滑出窗口,而headerInsectionView则会随着滑动继续上移。

UITableView的Style为Plain时禁止headerInsectionView固定在顶端:

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

    CGFloat sectionHeaderHeight = 50;

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

    }

}

相关文章

网友评论

      本文标题:设置headerInsectionView不悬浮

      本文链接:https://www.haomeiwen.com/subject/turesftx.html