Most likely you want to register xib for the cell and not for the view itself:
mediaProfileCollectionView.register(
UINib(nibName: "MediaProfileCollectionViewCell", bundle: nil),
forCellWithReuseIdentifier: "MediaProfileCollectionViewCell"
)
Most likely you want to register xib for the cell and not for the view itself:
mediaProfileCollectionView.register(
UINib(nibName: "MediaProfileCollectionViewCell", bundle: nil),
forCellWithReuseIdentifier: "MediaProfileCollectionViewCell"
)