Merge branch 'bugfix/SelfSizingCV' into 'develop'

fix issue with height

See merge request BPHV_MIPS/vds_ios!134
This commit is contained in:
Bruce, Matt R 2024-01-26 15:23:24 +00:00
commit 80792c2780

View File

@ -56,6 +56,12 @@ public final class SelfSizingCollectionView: UICollectionView {
}
}
public override func reloadData() {
super.reloadData()
setNeedsLayout()
layoutIfNeeded()
}
//--------------------------------------------------
// MARK: - Private Methods
//--------------------------------------------------