シミュレーターでアプリを実行すると、このランタイム エラーが発生します。
Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'could not dequeue a view of kind: UICollectionElementKindCell with identifier PlayingCard - must register a nib or a class for the identifier or connect a prototype cell in a storyboard'
クラッシュする行は
UICollectionViewCell* cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"PlayingCard"
forIndexPath:indexPath];
メソッドで
-(UICollectionViewCell*) collectionView:(UICollectionView *)collectionView
cellForItemAtIndexPath:(NSIndexPath *)indexPath{}
私が理解しているように、エラーは識別子「PlayingCard」が CollectionView の CollectionViewCells の識別子のいずれとも一致しないことを意味しますが、ストーリーボードの識別子が同一であることを確認しました。
ご協力いただきありがとうございます