Hi Brian,
At 6:19 it has tableView.register, but I'm using a collectionView and when I use this code it doesn't seem to recognize it. What's the different from tableView to collectionView?
fileprivate func setupCollectionView() {
let nib = UINib(nibName: "FeedCell", bundle: nil)
collectionView.register(UICollectionViewCell.self, forCellReuseIdentifier: cellId)
}
it gives this error:
Ambiguous reference to member 'collectionView(_:numberOfItemsInSection:)'
Any help would be appreciated :)