我正在为UICollectionView
使用自定义布局。我的牢房应该有固定的宽度和灵活的高度。
该单元格由UImageView
和UIStackView
组成。 UIImageView
的约束如下:
image.top = cell.top
image.width = cell.width
image.height = image.width * 1.33
image.centerX = cell.centerX
image.bottom = stackView.top
堆栈视图类似,并且确实绑定到单元格的底部。
当系统正在调用preferredLayoutAttributesFitting(_ layoutAttributes: UICollectionViewLayoutAttributes) -> UICollectionViewLayoutAttributes {
我正在进行一些计算以获得细胞的高度。
let preferredAttributes = super.preferredLayoutAttributesFitting(layoutAttributes)
let size = CGSize(width: layoutAttributes.frame.width,
height: UILayoutFittingCompressedSize.height)
let preferredSize = systemLayoutSizeFitting(size,
withHorizontalFittingPriority: .defaultHigh,
verticalFittingPriority: .fittingSizeLevel)
事实证明,preferredSize是使用imageView内在大小而不是尊重约束来计算的。因此,对于850x850的图像(以及160点宽度的单元格),我的高度比我预期的要高得多,因此底部有一个巨大空间的单元格。
我设法解决了这个问题,我觉得这是一个黑客攻击。
我创建了对图像宽度约束的引用,当我使用从layoutAttributes获得的固定值调用此方法并调用setNeedsLayout()和layoutIfNeeded()时更新它,这是有效的。但是我真的不喜欢我必须再次强制布局并自己更新宽度,更不用说我的性能松了。
如何以更好的方式完成这项工作?
非常感谢。
答案 0 :(得分:5)
您是否有宽高比限制? 当存在宽高比约束时,systemLayoutSizeFitting无法正常工作。
首先,尝试在图像上设置高度约束而不是宽高比,如果有效,请在代码中设置高度约束constant = image.width * 1.33