Post

Replies

Boosts

Views

Activity

Reply to How to make the collectionview cell to occupy full width
I added this to the collectionviewcelloverride func preferredLayoutAttributesFitting(_ layoutAttributes: UICollectionViewLayoutAttributes) -> UICollectionViewLayoutAttributes { setNeedsLayout() layoutIfNeeded() let size = contentView.systemLayoutSizeFitting(layoutAttributes.size) var frame = layoutAttributes.frame frame.size.height = ceil(size.height) layoutAttributes.frame = frame return layoutAttributes }The Cell is fitting perfectly now 😎
May ’20