如何在具有灵活高度的同一部分中的集合视图中有条件地加载Web视图和图像视图

时间:2019-06-18 07:58:42

标签: ios uitableview uicollectionview

我正在根据条件加载Web视图和图像视图。我无法管理集合视图的高度。

1 个答案:

答案 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)
}