I followed PSCollectionView\'s usage on Github.
This is my code:
- (void)viewDidLoad { self.collectionView = [[PSCollectionView alloc] init]; self.co
Try adding
[self.collectionView registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:@"cell"];
at the end of your viewDidLoad.
Usually you need to tell your collectionView what Cells/Views to use.