我有一个故事板,由单个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
。
进一步说明:
对于集合视图单元格的配置,您可以在
FooCollectionViewCell
上创建一个助手函数func configure(someData: SomeData)
,以便在cellForItemAt
函数和sizeForItemAt
函数之间共享代码。// Configure the data for your `FooCollectionViewCell` cell.stackView.addArrangedSubview(/*view1*/) cell.stackView.addArrangedSubview(/*view2*/)
对于这两行代码,似乎只有当
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来选择节。希望这能有所帮助。