美文网首页iOS 深度好文
UITableView的section headerView不悬

UITableView的section headerView不悬

作者: 淇水朱华 | 来源:发表于2017-05-05 17:37 被阅读850次

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

    1. 将 style 设置为 Grouped 。这时所有的section header都会随着scrollview滚动了。不过 grouped 和 plain 的样式有轻微区别,切换样式后也许需要重新调整UI
    2. 重载scrollview的delegate方法
      //去掉UItableview headerview黏性(sticky)
     -(void)scrollViewDidScroll:(UIScrollView *)scrollView {
        if (scrollView == self.tableView)
        {
            CGFloat sectionHeaderHeight = 50;  //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);
            }
        }
    }
    

    本文转载自:http://blog.csdn.net/leemin_ios/article/details/49799479

    相关文章

      网友评论

        本文标题:UITableView的section headerView不悬

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