在UITableViewStylePlain情况下sectionHeader可以与tableview一起滑动的解决方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在UITableViewStylePlain情况下sectionHeader可以与tableview一起滑动的解决方法相关的知识,希望对你有一定的参考价值。

-(void)scrollViewDidScroll:(UIScrollView *)scrollView
{
    CGFloat sectionHeaderHeight = 20;
    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);
    }
}

在 -(void)scrollViewDidScroll:(UIScrollView *)scrollView方法中添加上诉代码即可

以上是关于在UITableViewStylePlain情况下sectionHeader可以与tableview一起滑动的解决方法的主要内容,如果未能解决你的问题,请参考以下文章

iOS tableView 中 UITableView中UITableViewStyleGrouped和UITableViewStylePlain的区别

UITableView详细注释

Tableview如何实现流畅的展开折叠?

UITableView 在滚动时崩溃

UISearchBar 范围空白

UITableView