Last active
May 23, 2023 06:59
-
-
Save daoseng33/2b99e6611a515ed20d1b0ab8b6c699f5 to your computer and use it in GitHub Desktop.
Left Align Cells in UICollectionView: https://stackoverflow.com/questions/22539979/left-align-cells-in-uicollectionview
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class LeftAlignedCollectionViewFlowLayout: UICollectionViewFlowLayout { | |
override func layoutAttributesForElements(in rect: CGRect) -> [UICollectionViewLayoutAttributes]? { | |
let attributes = super.layoutAttributesForElements(in: rect) | |
var leftMargin = sectionInset.left | |
var maxY: CGFloat = -1.0 | |
attributes?.forEach { layoutAttribute in | |
if layoutAttribute.frame.origin.y >= maxY { | |
leftMargin = sectionInset.left | |
} | |
layoutAttribute.frame.origin.x = leftMargin | |
leftMargin += layoutAttribute.frame.width + minimumInteritemSpacing | |
maxY = max(layoutAttribute.frame.maxY , maxY) | |
} | |
return attributes | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment