UICollectionview inside uitableview cell height automaticdimention not working while set collection view
Problem:
I'm having one tableviewcell inside that one collectioviewcell tableview height is dynamic.But sometimes tableview contentsize came as zero.How to solve that?
My code is like below
Cell.collViewHeightConstraint.constant = Cell.collectionView.ContentSize.height
Solution:
Cell.collViewHeightConstraint.constant = Cell.collectionView.collectionViewLayout.collectionViewContentSize.height
Comments
Post a Comment