UICollectionView补充标题的位置

时间:2019-06-21 22:04:43

标签: swift uicollectionview uicollectionviewcell uicollectionviewflowlayout

我希望在我的收藏视图的各部分上放置标题。我有一个tableview内嵌的collectionview。使用tableview的section标头会使标头离内容太远。将节标题作为集合视图的一部分;但是,将标题放置在集合视图单元格本身的顶部。我正在寻找部分标题和部分细节之间的空间。

func setup() {
        let layout = UICollectionViewFlowLayout()
        layout.itemSize = THUMB_SIZE
        layout.minimumLineSpacing = 25
        layout.sectionInset.right = layout.itemSize.width / 2
        layout.scrollDirection = .horizontal
        collectionView = UICollectionView(frame: self.bounds, collectionViewLayout: layout)
        collectionView.backgroundColor = UIColor(named: "collectionView")
        collectionView.delegate = self
        collectionView.dataSource = self
        collectionView.remembersLastFocusedIndexPath = true
        collectionView.register(MainCVCell.self, forCellWithReuseIdentifier: "cvCell")
        self.addSubview(collectionView)

        self.collectionView.register(HeaderCVCell.self, forCellWithReuseIdentifier: "headerCell")
    }

    // MARK: - Collectionview Delegate & Datasource

    func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
        return topics.shows.count
    }

    func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cvCell", for: indexPath) as! MainCVCell

        cell.show = topics.shows[indexPath.row]
        cell.selectedIndex = indexPath.row

        return cell
    }

    func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
        delegate.selectedMedia(showID: topics.shows[indexPath.row])
    }

    func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {
        let footerView = collectionView.dequeueReusableCell(withReuseIdentifier: "headerCell", for: indexPath)
        if kind == UICollectionView.elementKindSectionHeader {
            let headerView = collectionView.dequeueReusableCell(withReuseIdentifier: "headerCell", for: indexPath) as! HeaderCVCell
            headerView.headerText = topics.title
            return headerView
        } else {
            return footerView
        }
    }

    func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize {
        return CGSize(width: 172, height: 60)
    }

    func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForFooterInSection section: Int) -> CGSize {
        return .zero
    }

现在用于集合视图标题单元格:

class HeaderCVCell: UICollectionViewCell {

    var headerText:String! {
        didSet {
            setup()
        }
    }

    override init(frame: CGRect) {
        super.init(frame: frame)
    }

    required init?(coder aDecoder: NSCoder) {
        super.init(coder: aDecoder)
    }

    private func setup() {
        let headerLabel = UILabel()
        headerLabel.text = headerText
        headerLabel.textColor = .white
        headerLabel.sizeToFit()

        self.subviews.forEach {$0.removeFromSuperview()}
        self.addSubview(headerLabel)
    }
}

我通过在标题单元格本身上放置背景色而注意到的一件事是,标题单元格的高度等于集合视图的高度。无论如何,似乎都无法独立于集合视图单元格来调整标题视图单元格的高度。如果更改layout.itemSize,则会更改标头和内容的大小。如果我使用layout.headerReferenceSize,它不会改变任何东西。您还可以从代码中看到委托方法。根据文档,在像这样的水平滚动情况下,它似乎不会看高度。我还尝试过直接设置标头单元格的框架,但这被忽略。

净额,我的版块标题崩溃到了集合视图中的常规内容中。我怀疑这可能是因为标头的高度是集合视图的高度,因此其位置要尽可能高。我无法更改高度,也找不到其他方法将标题与内容分开。

1 个答案:

答案 0 :(得分:0)

我有一个类似的设置,并且在我的Header文件中,我设置了大小:

override func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
    return CGSize(width: frame.width / 2 + 60, height: frame.height)
}

而且,如果要创建一些间距,则可以使用插图。将顶部设置为负数应在标题后面显示一些空格。

    override func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, insetForSectionAt section: Int) -> UIEdgeInsets {
    return UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 0)
}