带有弹跳动画的UICollectionView

时间:2015-07-03 10:36:48

标签: ios iphone uicollectionview uicollectionviewcell uicollectionviewlayout

我尝试加载UICollectionView单元格的方式是UICollectionView中的部分逐个加载,动画从右向左滑动。一旦它从右向左滑入,我希望它反弹/摇动,然后第二部分滑入并以相同的效果反弹。我可以在各个部分滑动但是一旦它从右到左进入,我就不能让它反弹/摇晃一下。以下是我尝试的代码:

[UIView animateWithDuration:0.2 delay:0 options:UIViewAnimationOptionCurveEaseOut animations:^{
            attributes.transform3D = CATransform3DMakeTranslation(self.collectionView.bounds.size.width, 0, 0);
        } completion:^(BOOL finished){
            attributes.transform = CGAffineTransformMakeTranslation(0, -120);
            //code needed to make it bounce a little
        }];

0 个答案:

没有答案