美文网首页
让UITableView的section header view

让UITableView的section header view

作者: 陈大帅 | 来源:发表于2016-10-14 15:18 被阅读337次

    当UITableView的style属性设置为Plain时,这个tableview的section header在滚动时会默认悬停在界面顶端。取消这一特性的方法有两种:

    1,将style设置为Grouped。这时所有的section header都会随着scrollview滚动了。不过grouped和plain的样式有轻微区别,切换样式后也许需要重新调整UI

    2,重载scrollview的delegate方法

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

    CGFloat sectionHeaderHeight=40;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);

    }}

    这是原出处的地址:http://www.tuicool.com/articles/niuQZjm

    相关文章

      网友评论

          本文标题:让UITableView的section header view

          本文链接:https://www.haomeiwen.com/subject/vnogyttx.html