当我在模拟器中运行我的应用程序时出现此运行时错误。
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 标识符都不匹配,但我确保情节提要中的标识符是相同的。
谢谢你的帮助