2

レイアウト オブジェクトをリロードまたは変更せずに、1 つの UICollectionViewCell の UICollectionViewLayoutAttributes 属性を変更したい

やった

UICollectionViewLayoutAttributes *attributes = [collectionView layoutAttributesForItemAtIndexPath:indexPath];

attributes.transform = CGAffineTransformMakeScale(1.5, 1.5);

しかし、これは細胞に伝播していません - どうすればこれを行うことができますか?

4

1 に答える 1