Skip to content

Instantly share code, notes, and snippets.

@factoryhr
Created January 27, 2020 14:31
Show Gist options
  • Save factoryhr/ba58dc37808100847a390dc6236951a3 to your computer and use it in GitHub Desktop.
Save factoryhr/ba58dc37808100847a390dc6236951a3 to your computer and use it in GitHub Desktop.
override func layoutAttributesForElements(in rect: CGRect) -> [UICollectionViewLayoutAttributes]? {
var visibleLayoutAttributes: [UICollectionViewLayoutAttributes] = []
for attributes in layoutAttributesForItems.values {
if attributes.frame.intersects(rect) {
visibleLayoutAttributes.append(attributes)
}
}
return visibleLayoutAttributes
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment