When I call
[collectionView cellForItemAtIndexPath:indexPath:]
from inside
[collectionView:layout:sizeForItemAtIndexPath:]
then the delegate method is not triggered. Any idea why not?
You can see it here.
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
CustomCell *cell = [self.collectionView dequeueReusableCellWithReuseIdentifier:@"CustomCell" forIndexPath:indexPath];
[cell configureWithData:self.data[indexPath.row]];
return cell;
}
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath {
CustomCell * cell = (CustomCell *)[collectionView cellForItemAtIndexPath:indexPath];
return [cell prefferedSize];
}
What i want to do is to ask the cell for its preffered size.
I could do
CustomCell * cell = (CustomCell *)[self collectionView:collectionView cellForItemAtIndexPath:indexPath];
but then a never ending loop cycle is triggered
why is its delegate method not called as it should be?