Created
November 12, 2018 15:44
-
-
Save kirkbyo/ed5c63e94acb8a3feae06b2c761b7c50 to your computer and use it in GitHub Desktop.
Left Aligned UICollectionView
This file contains hidden or 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 LeftAlignedCollectionViewLayout: 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 | |
guard layoutAttribute.representedElementCategory == .cell else { return } | |
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