• 处理TableVIew SectionHeader悬停问题


    1,plain类型的tableview  才会悬停  grouped类型不会悬停

    2,通过改变contentInset达到部分悬停遮罩的处理,对所有的Sectionheader都有效,不可以单独处理某一个sectionheader

    - (void)scrollViewDidScroll:(UIScrollView *)scrollView

    {

        

            CGFloat sectionHeaderHeight = XX;

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

        }

    }

  • 相关阅读:
    Mybatis基础配置及增删查改操作
    SpringMVC注解方式与文件上传
    SpringMVC的基础配置及视图定位
    Spring AOP面向切面编程
    Spring注入属性、对象
    Spring的配置及jar包下载
    多线程
    集合框架
    I/O————流
    I/O————对象流
  • 原文地址:https://www.cnblogs.com/huaida/p/11637959.html
Copyright © 2020-2023  润新知