fix issue with height

Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
Matt Bruce 2024-01-26 09:22:54 -06:00
parent c81fb5140b
commit ddd363e2da

View File

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