tableView 讓區頭更隨 cell 一起滾動

//去掉UItableview headerview黏性(sticky)
將一下方法粘過去改一個地方就夠了
- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
    if (scrollView == self.menuTableView)
    {
        CGFloat sectionHeaderHeight = 25; //sectionHeaderHeight你區頭的高度
        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);
        }
    }
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章