我有一个包含不同自定义单元格的集合视图.
这些单元格包含不同大小的内容.
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath { id cellAtIndexPath = [collectionView cellForItemAtIndexPath:indexPath]; NSLog(@"The cell: %@",cellAtIndexPath); ... e.g. calling sizeToFit methods and cumulating the sizes of the cells' subviews ... }
对于每个单元格都会调用Method,但无论我尝试了什么,cellAtIndexPath都会返回NULL.
所以我无法访问indexPath或其内容视图中的单元格对象.
有什么建议我无法访问单元格对象?