宣言するさまざまなアイテムサイズのコレクションビューがあります
- (CGSize)collectionView:(UICollectionView *)collectionView
layout:(UICollectionViewLayout*)collectionViewLayout
sizeForItemAtIndexPath:(NSIndexPath *)indexPath {
FeedItem *item = [_imagesLinkArray objectAtIndex:indexPath.row];
return CGSizeMake(250, 200*item.sizeFactor);
}
アイテム内のセルが再利用されている場合、 でcollectionView:cellForItemAtIndexPath:
指定されたサイズではなく、再利用されたアイテムのサイズでレンダリングされますsizeForItemAtIndexPath:
。
何か案は?