I have a added a UICollectionView to my UIViewController and have made a custom cell for it.
UICollectionView
UIViewController
I set the size of the cell using the siz
siz
I had once similar problem (content of my cell was not fitting cell even with correct autolayout). The bug was caused by not calling super.layoutSubviews() in overriden function layoutSubviews() that was in Cell's class.
super.layoutSubviews()