I\'m getting the error ...
*** Assertion failure in -[UICollectionView _dequeueReusableViewOfKind:withIdentifier:forIndexPath:], /SourceCache/UIKit/UIKit-237
I had the same problem. Here's how I solved it.
Move
[self.pictureCollectionView registerNib:[UINib nibWithNibName: bundle:nil] forCellWithReuseIdentifier:reuseID]
to be in - (void)viewDidLoad,
- (void)viewDidLoad
rather than method - (void)awakeFromNib.
- (void)awakeFromNib