diff --git a/Source/IGListKit/Internal/IGListAdapter+UICollectionView.m b/Source/IGListKit/Internal/IGListAdapter+UICollectionView.m index a2333fd8b..3b90857ec 100644 --- a/Source/IGListKit/Internal/IGListAdapter+UICollectionView.m +++ b/Source/IGListKit/Internal/IGListAdapter+UICollectionView.m @@ -50,6 +50,9 @@ - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cell _isDequeuingCell = NO; IGAssert(cell != nil, @"Returned a nil cell at indexPath <%@> from section controller: <%@>", indexPath, sectionController); + if (cell) { + IGAssert(cell.reuseIdentifier != nil, @"Returned a cell without a reuseIdentifier at indexPath <%@> from section controller: <%@>", indexPath, sectionController); + } // associate the section controller with the cell so that we know which section controller is using it [self mapView:cell toSectionController:sectionController];