我正在尝试使用弹跳效果为单个集合视图单元格(仅在插入单元格时只有动画的前N个单元格)设置动画,并且想知道下面是放置动画的正确函数吗?下面的代码移动了我想要的单元格,但我也希望最后有一个弹簧效果。
- (UICollectionViewLayoutAttributes*)initialLayoutAttributesForAppearingItemAtIndexPath:(NSIndexPath *)itemIndexPath {
UICollectionViewLayoutAttributes *attributes = [super initialLayoutAttributesForAppearingItemAtIndexPath:itemIndexPath];
attributes.transform = CGAffineTransformMakeTranslation(0, 20.5);
return attributes;
}