user241641
user241641

Reputation: 95

Uicollectionview controller issue

App crash and give following error message Terminating app due to uncaught exception

'NSInternalInconsistencyException', 
reason: '-[UICollectionViewController loadView]
 loaded the "RecipeCollectionViewController" nib but didn't get a UICollectionView.

Upvotes: 0

Views: 2565

Answers (1)

Dhaval Bhadania
Dhaval Bhadania

Reputation: 3089

Try setting a breakpoint on:

[self.collectionView registerClass:[ImageCell class] forCellWithReuseIdentifier:@"MyCell"];

i would guess your loadView (did you mean viewDidLoad?) method is not being called, so the class is never registered with the collectionView.

Upvotes: 1

Related Questions