美文网首页复杂UI
UITableView的Header及不悬浮的方法

UITableView的Header及不悬浮的方法

作者: Steven_Wu | 来源:发表于2017-02-28 20:50 被阅读3296次

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

给tableView添加这两个View:tableHeaderView是通过tableView.tableHeaderView = XXXView 的方式添加的,而headerInsectionView是通过tableView:viewForHeaderInSection:代理方法添加的。

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


相关文章

网友评论

    本文标题:UITableView的Header及不悬浮的方法

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