I'm using UICollectionViewDelegateFlowLayout to make my size and height of the collectionViewCell but when I use this one, the constraint in the cell are not updated.
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
return CGSize(width: UIScreen.main.bounds.width - 30, height: self.height)
}
So the delegate method set the correct size but element in the cell are cuted (not updated). My cell constraint are set in the storyboard.
Without too much detail, I guess you may need:
viewWillLayoutSubviews()https://developer.apple.com/documentation/uikit/uiviewcontroller/1621437-viewwilllayoutsubviews
or
layoutSubviews()https://developer.apple.com/documentation/uikit/uiview/1622482-layoutsubviews