When you drag any views into the UICollectionViewCell XIB, you drag the cell.contentView element, not the cell.view.
Please check in didSelect, you will see all the subheadings
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath{
MyCell *cell = (MyCell*)[collectionView cellForItemAtIndexPath:indexPath];
NSArray *views = [cell.contentView subviews];
NSLog(@"Select %@",views);
}
source
share