UICollectionViewCompositionalLayout水平,使用估算值时不计算内容宽度并且不水平拥抱

问题描述 投票:0回答:1
I want the cell to horizontaly Hug its content

我在水平模式下使用UICollectionViewCompositionalLayout,并且应该使用widthDimension: .estimated(100)计算内容大小

但是,单元格/组的宽度完全不是通过内容大小来计算的并设置为估计值,因为这将是绝对值

即使向标签添加宽度约束也不会影响像元大小

这是预期的行为吗?如果是,那为什么呢?以及如何获得期望的结果?

enter image description here

enter image description here

class LabelCell: UICollectionViewCell {
    @IBOutlet weak var label: UILabel!
}

class ViewController: UIViewController, UICollectionViewDataSource {

    func buildLayout() -> UICollectionViewCompositionalLayout {

        let itemSize = NSCollectionLayoutSize(widthDimension: .estimated(100), heightDimension: .absolute(32))
        let item = NSCollectionLayoutItem(layoutSize: itemSize)

        let groupSize = NSCollectionLayoutSize(widthDimension: .estimated(100), heightDimension: .absolute(32))
        let group = NSCollectionLayoutGroup.horizontal(layoutSize: groupSize, subitem: item, count: 1)

        let section = NSCollectionLayoutSection(group: group)
        section.interGroupSpacing = 10

        let configuration = UICollectionViewCompositionalLayoutConfiguration()
        configuration.scrollDirection = .horizontal
        return UICollectionViewCompositionalLayout(section: section, configuration: configuration)

    }

    @IBOutlet weak var collectionView: UICollectionView!

    let items = ["1", "12", "12345", "123456789"]

    override func viewDidLoad() {
        super.viewDidLoad()
        collectionView.collectionViewLayout = buildLayout()
    }

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

    func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
        let c = collectionView.dequeueReusableCell(withReuseIdentifier: "LabelCell", for: indexPath) as! LabelCell
        c.label.text = items[indexPath.row]
        return c
    }
}
swift cocoa-touch uicollectionview uicollectionviewlayout uicollectionviewcompositionallayout
1个回答
0
投票
let group = NSCollectionLayoutGroup.horizontal(layoutSize: groupSize, subitem: item, count: 1)

为此:

let group = NSCollectionLayoutGroup.horizontal(layoutSize: groupSize, subitems: [item])

我不确定为什么需要进行此更改,因为这些行似乎在说同一件事。也就是说,只要您的集合视图单元格通过覆盖sizeThatFits(_:)preferredLayoutAttributesFitting(_:),使用“自动布局”等指定实际的单元格大小,它将可以正常工作。

关于它的价值,第一个函数签名的文档说:

指定一组将在水平轴上具有N个

大小相等的项目。

第二个功能签名的注释不对大小相同的项目提出此类声明。它说:

指定将重复项目直到可用水平空间用尽的组。

© www.soinside.com 2019 - 2024. All rights reserved.