Skip to content

Instantly share code, notes, and snippets.

@gmoraleda
Last active November 15, 2018 12:54
Show Gist options
  • Save gmoraleda/a172bc2118cb2103d8970bd0ebaf45be to your computer and use it in GitHub Desktop.
Save gmoraleda/a172bc2118cb2103d8970bd0ebaf45be to your computer and use it in GitHub Desktop.
lazy var collectionView = setupCollectionView()
private func setupCollectionView() -> UICollectionView {
let layout = UICollectionViewFlowLayout()
layout.minimumInteritemSpacing = 0
layout.itemSize = CGSize(width: 50, height:50)
// Perform any other customizing to your layout/UICollectionView
return UICollectionView(frame: .zero, collectionViewLayout: layout)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment