1. 程式人生 > >解決UITableView控制元件中section中的HeaderView懸浮滾動的方案

解決UITableView控制元件中section中的HeaderView懸浮滾動的方案

我設定了一個UITableview並且每個Section中都有一個headerView,可是section中的HeaderView懸浮滾動,網上說了一大堆,可都把我說糊塗了,正解是 把tableView的Style設定還是plain  可以在方法中增加一個方法:

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

    CGFloat sectionHeaderHeight = 30;

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

             }

}

不過就是有點不滿意的地方 是必須是必須是tableview滾動才生效,可以在設定tableview時再增加一個方法:

​   [self.sportTableView scrollToRowAtIndexPath:indexpath atScrollPosition:UITableViewScrollPositionTopanimated:YES];