我正在根据条件加载Web视图和图像视图。我无法管理集合视图的高度。
答案 0 :(得分:0)
请编写一些代码,以便我们更好地帮助您。 还要检查此方法,它可以帮助您:
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
//You can set a condition here to check if the collection has an imageView or web view and set the size you want according to it.
return CGSize(width: size, height: size)
}