如何在UICollectionView中添加HeaderView,如UITableView的tableHeaderView

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在UICollectionView中添加HeaderView,如UITableView的tableHeaderView相关的知识,希望对你有一定的参考价值。

如何在UICollectionView顶部添加标题视图/顶视图(不是节标题)?

它应该像UITableViewtableHeaderView财产一样行动。

因此,它需要位于第一部分标题视图的顶部(在索引0处的部分之前),与其余内容一起滚动,并进行用户交互。

到目前为止我提出的最好的方法是制作一个特殊的XIB(MyCollectionReusableViewUICollectionReusableView子类作为文件的所有者),第一部分标题视图足够大,也可以在标题中包含我的子视图,这是一种黑客攻击我想,我还没有设法检测到触摸。

不确定我是否可以使我的MyCollectionReusableView子类允许触摸或有更好的方法。

答案

我通过添加UIView作为集合视图的子视图,将视图放在集合视图的顶部。它确实向上滚动集合视图,它具有正常的UIView用户交互。如果您没有节标题,这可以正常工作,但如果您没有,则无效。在那种情况下,我认为你做这件事的方式没有任何问题。我不确定你为什么没有检测到触摸,它们对我来说很好。

另一答案
self.collectionView  =  [[UICollectionView alloc] initWithFrame:CGRectMake(0, 0, 320, self.view.frame.size.height) collectionViewLayout:flowlayout];
self.collectionView.contentInset = UIEdgeInsetsMake(50, 0, 0, 0);
UIImageView *imagev = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"015.png"]];
imagev.frame = CGRectMake(0, -50, 320, 50);
[self.collectionView addSubview: imagev];
[self.view addSubview: _collectionView];

我使用属性contentInset将一个框架插入到UICollectionView的顶部,然后我将图像视图添加到它,并且它成功。我认为它可以像UITableViewtableHeaderView财产一样行动。你怎么看?

另一答案

实现此目的的最佳方法是为第一部分创建节标题。然后设置UICollectionViewFlowLayout属性:

@property(nonatomic) BOOL sectionHeadersPinToVisibleBounds

或者迅速

var sectionHeadersPinToVisibleBounds: Bool

对NO(对于swift来说是假的)。这将确保节标题与单元格连续滚动,并且不会像节标题通常那样固定到顶部。

另一答案

我最终使用UICollectionView扩展来添加我的自定义标头。使用特定标签,我可以伪造存储的属性以识别我的自定义标头(从外部透明)。如果在添加自定义标头时未完成UICollectionView的布局,则可能必须滚动到特定偏移量。

extension UICollectionView {
    var currentCustomHeaderView: UIView? {
        return self.viewWithTag(CustomCollectionViewHeaderTag)
    }

    func asssignCustomHeaderView(headerView: UIView, sideMarginInsets: CGFloat = 0) {
        guard self.viewWithTag(CustomCollectionViewHeaderTag) == nil else {
            return
        }
        let height = headerView.systemLayoutSizeFitting(UILayoutFittingCompressedSize).height
        headerView.frame = CGRect(x: sideMarginInsets, y: -height + self.contentInset.top, width: self.frame.width - (2 * sideMarginInsets), height: height)
        headerView.tag = CustomCollectionViewHeaderTag
        self.addSubview(headerView)
        self.contentInset = UIEdgeInsets(top: height, left: self.contentInset.left, bottom: self.contentInset.bottom, right: self.contentInset.right)
    }

    func removeCustomHeaderView() {
        if let customHeaderView = self.viewWithTag(CustomCollectionViewHeaderTag) {
            let headerHeight = customHeaderView.frame.height
            customHeaderView.removeFromSuperview()
            self.contentInset = UIEdgeInsets(top: self.contentInset.top - headerHeight, left: self.contentInset.left, bottom: self.contentInset.bottom, right: self.contentInset.right)
        } 
    }
}

CustomCollectionViewHeaderTag是指您为标题指定的标记号。确保它不是UICollectionView中嵌入的anotherView的标记。

另一答案

我认为最好的方法是将它子类化为UICollectionViewLayout(UICollectionViewFlowLayout)并添加所需的页眉或页脚属性。

由于所有项目包括UICollectionView布局中的补充视图根据其collectionViewLayout属性,因此collectionviewlayout决定是否有标题(页脚)。

使用contentInset更容易,但是当您想要动态隐藏或显示标题时可能会出现问题。

我已经编写了一个协议来完成这个任务,UICollectionViewLayout的任何子类都可以使用它来使它有一个页眉或页脚。你可以找到它here.

主要的想法是为标题创建一个UICollectionViewLayoutAttributes并在layoutAttributesForElements(in rect: CGRect)中返回它,如果需要,你将不得不修改所有其他属性,它们的所有位置都应该按标题高度向下移动,因为标题在它们之上。

另一答案
private var PreviousInsetKey: Void?
extension UIView {

var previousInset:CGFloat {
    get {
        return objc_getAssociatedObject(self, &PreviousInsetKey) as? CGFloat ?? 0.0
    }
    set {
        if newValue == -1{
            objc_setAssociatedObject(self, &PreviousInsetKey, nil, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)
        }
        else{
            objc_setAssociatedObject(self, &PreviousInsetKey, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)
        }
    }
}


func addOnCollectionView(cv: UICollectionView){
    if self.superview == nil{
        var frame = self.frame
        frame.size.width = SCREEN_WIDTH
        cv.frame = frame
        self.addOnView(view: cv)
        let flow = cv.collectionViewLayout as! UICollectionViewFlowLayout
        var inset = flow.sectionInset
        previousInset = inset.top
        inset.top = frame.size.height
        flow.sectionInset = inset
    }

}

func removeFromCollectionView(cv: UICollectionView){
    if self.superview == nil{
        return
    }
    self.removeFromSuperview()
    let flow = cv.collectionViewLayout as! UICollectionViewFlowLayout
    var inset = flow.sectionInset
    inset.top = previousInset
    flow.sectionInset = inset
    previousInset = -1
}

func addOnView(view: UIView){

    view.addSubview(self)

    self.translatesAutoresizingMaskIntoConstraints = false
    let leftConstraint = NSLayoutConstraint(item: self, attribute: .leading, relatedBy: .equal, toItem: view, attribute: .leading, multiplier: 1.0, constant: 0)
    let widthConstraint = NSLayoutConstraint(item: self, attribute: .width, relatedBy: .equal, toItem: nil, attribute: .notAnAttribute, multiplier: 1.0, constant: view.frame.size.width)
    let heightConstraint = NSLayoutConstraint(item: self, attribute: .height, relatedBy: .equal, toItem: nil, attribute: .notAnAttribute, multiplier: 1.0, constant: view.frame.size.height)
    let topConstraint = NSLayoutConstraint(item: self, attribute: .top, relatedBy: .equal, toItem: view, attribute: .top, multiplier: 1.0, constant: 0)

    view.addConstraints([leftConstraint, widthConstraint, heightConstraint, topConstraint])
    self.layoutIfNeeded()
    view.layoutIfNeeded()
}
}

以上是关于如何在UICollectionView中添加HeaderView,如UITableView的tableHeaderView的主要内容,如果未能解决你的问题,请参考以下文章

如何在 UICollectionView 的部分标题中动态添加标签和按钮?

如何在一个视图中添加多个部分 UICollectionView 单元格

如何在 UICollectionView 中添加按钮以插入新数据?

如何在UICollectionView中添加HeaderView,如UITableView的tableHeaderView

如何在 UITableView Header 上添加 UICollectionView

如何删除所有项目并将新项目添加到 UICollectionView?