I followed PSCollectionView\'s usage on Github.
This is my code:
- (void)viewDidLoad { self.collectionView = [[PSCollectionView alloc] init]; self.co
it's because you have typo , it's not ViewDidLoad() it's viewDidLoad(), so your ViewDidLoad() normally never gets called. So, you're not able to set your delegate and datasource properly.
ViewDidLoad()
viewDidLoad()