レイアウト オブジェクトをリロードまたは変更せずに、1 つの UICollectionViewCell の UICollectionViewLayoutAttributes 属性を変更したい
やった
UICollectionViewLayoutAttributes *attributes = [collectionView layoutAttributesForItemAtIndexPath:indexPath];
attributes.transform = CGAffineTransformMakeScale(1.5, 1.5);
しかし、これは細胞に伝播していません - どうすればこれを行うことができますか?