tableView内容视图(例如section的headerView)移动

- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
    if (scrollView ==_tableView)
    {
        CGFloat sectionHeaderHeight = 25;
        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);
        }
    }
}
posted @ 2016-04-28 17:31  小凡歌  阅读(230)  评论(0编辑  收藏  举报