ios - UICollectionView est imbriqué dans UITableViewCell et j'espère que la hauteur du premier changera en fonction de la hauteur du second
phpcn_u15822017-05-16 13:19:36
0
3
669
UICollectionView中的布局方式类似于瀑布流,根据文本的大小来决定UICollectionView的contentSize。我希望UITableViewCell的高度能够根据UICollectionViewÇa change avec le changement de hauteur, comment faire ?
如果你想做到tableview cell高度可以自动计算,是很难做到的
可以先算出collectionView的总体高度,然后更新tableview cell高度
为了流畅,可以缓存高度。
UICollectionView
的高度、UITableViewCell
的高度?是不是问题提的有错啊,而且没能明白楼主表达的场景选用。
在tableview中写一个cgfloat的属性记录collectionview的高度,在controller中的heightForRow方法中赋值应该就可以了