I have to add a UICollectionView inside a UITableViewCell.
The collectionView can have a different number of items.
So the collectionView should adjust properly inside the tableView.
I have implemented this inside my Project: https://github.com/vishalwaka/DynamicCollectionViewInsideTableViewCell
In my case, the height of the cell is not being the adjusted after the height of the collectionView is set.
How can I set the collectionView to not be scrollable and also show all content inside the tableviewcell.

