I have a collection view with varied item sizes which i declare in
- (CGSize)collectionView:(UICollectionView *)collectionView
layout:(UICollectionViewLayout*)collectionViewLayout
sizeForItemAtIndexPath:(NSIndexPath *)indexPath {
FeedItem *item = [_imagesLinkArray objectAtIndex:indexPath.row];
return CGSizeMake(250, 200*item.sizeFactor);
}
When the cell is being reused in collectionView:cellForItemAtIndexPath:
the item is being rendered with the reuesed item size and not the one specified in sizeForItemAtIndexPath:.
any ideas?