UICollectionView:使用UIStackView动态单元格高度



我有一个故事板,由单个UICollectionView和多个单元格组成,每个单元格的高度不同。第一个单元格取UICollectionViewDelegateFlowLayout:的高度

func collectionView(collectionView: UICollectionView,
        layout collectionViewLayout: UICollectionViewLayout,
        sizeForItemAtIndexPath indexPath: NSIndexPath) -> CGSize

但我希望第二个牢房短一点。我在单元格中的"主"UIStackView中放置了两个UIStackViews,每个内部UIStackViews都有一个或多个标签,如下所示:

cell
--> stackView (master)
    --> stackView (1)
        --> label
    --> stackView (2)
        --> label
        --> label (etc)

希望UIStackView能使细胞高度动态,但事实并非如此。它与以前一样采用距UICollectionViewDelegateFlowLayout的高度。

我该怎么做?

您需要计算CollectionViewCell的内容大小,并将其返回给sizeForItemAt函数。

func collectionView(_ collectionView: UICollectionView,
                    layout collectionViewLayout: UICollectionViewLayout,
                    sizeForItemAt indexPath: IndexPath) -> CGSize {
    // Create an instance of the `FooCollectionViewCell`, either from nib file or from code.
    // Here we assume `FooCollectionViewCell` is created from a FooCollectionViewCell.xib
    let cell: FooCollectionViewCell = UINib(nibName: "FooCollectionViewCell", bundle: nil)
        .instantiate(withOwner: nil, options: nil)
        .first as! FooCollectionViewCell
    // Configure the data for your `FooCollectionViewCell`
    cell.stackView.addArrangedSubview(/*view1*/)
    cell.stackView.addArrangedSubview(/*view2*/)
    // Layout the collection view cell
    cell.setNeedsLayout()
    cell.layoutSubviews()
    // Calculate the height of the collection view based on the content
    let size = cell.contentView.systemLayoutSizeFitting(
        CGSize(width: collectionView.bounds.width, height: 0),
        withHorizontalFittingPriority: UILayoutPriorityRequired,
        verticalFittingPriority: UILayoutPriorityFittingSizeLevel)
    return size
}

这样,您将拥有一个动态单元高度UICollectionView


进一步说明:

  1. 对于集合视图单元格的配置,您可以在FooCollectionViewCell上创建一个助手函数func configure(someData: SomeData),以便在cellForItemAt函数和sizeForItemAt函数之间共享代码。

    // Configure the data for your `FooCollectionViewCell`
    cell.stackView.addArrangedSubview(/*view1*/)
    cell.stackView.addArrangedSubview(/*view2*/)
    
  2. 对于这两行代码,似乎只有当UICollectionViewCell包含垂直UIStackView作为子视图时才需要它(可能是Apple的错误)。

    // Layout the collection view cell
    cell.setNeedsLayout()
    cell.layoutSubviews()
    

如果要更改单元格的高度,则必须更改sizeForItemAtIndexPath中返回的高度。堆栈视图在这里不会有任何影响。这里有一个你可以做的例子:

func collectionView(collectionView: UICollectionView,
    layout collectionViewLayout: UICollectionViewLayout,
    sizeForItemAtIndexPath indexPath: NSIndexPath) -> CGSize {
    if indexPath.row == 1 {
        return CGSizeMake(width, height/2)
    }
    return  CGSizeMake(width, height)
}

这将更改第1行单元格的大小。也可以使用indexPath.section来选择节。希望这能有所帮助。

相关内容

  • 没有找到相关文章

最新更新