-(
void)collectionView:(UICollectionView *)collectionView willDisplayCell:(UICollectionViewCell *)cell forItemAtIndexPath:(
NSIndexPath *)indexPath {
cell
.transform = CGAffineTransformMakeScale(
1.4,
1.4);
[
UIView animateWithDuration:
0.5 delay:
0.0 options:UIViewAnimationOptionCurveEaseInOut animations:^{
cell
.transform = CGAffineTransformIdentity;
} completion:
nil];
}
转载请注明原文地址: https://ju.6miu.com/read-22626.html