Skip to content

Instantly share code, notes, and snippets.

@standinga
Created May 30, 2019 22:57
Show Gist options
  • Save standinga/9e78c393fbd537c0ed5d611b2a9c7b0b to your computer and use it in GitHub Desktop.
Save standinga/9e78c393fbd537c0ed5d611b2a9c7b0b to your computer and use it in GitHub Desktop.
CustomView.swift for medium post about UICollectionView inside UIView
private func initCollectionView() {
let nib = UINib(nibName: "CustomCell", bundle: nil)
collectionView.register(nib, forCellWithReuseIdentifier: "CustomCell")
collectionView.dataSource = self
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment