Last active
November 15, 2018 12:54
-
-
Save gmoraleda/a172bc2118cb2103d8970bd0ebaf45be to your computer and use it in GitHub Desktop.
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
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