动画-缩放,旋转 CGAffineTransform

CGAffineTransform transform; // = CGAffineTransformScale(flyImoji.transform, 8, 8);
    transform = CGAffineTransformMakeRotation(90);
        [UIView animateWithDuration:1 animations:^{
            flyImoji.transform = transform;
            flyImoji.frame = endFrame;
            flyImoji.alpha = endAlpha;
        } completion:^(BOOL finished) {
            [flyImoji removeFromSuperview];
        }];
https://github.com/yixiangboy/IOSAnimationDemo

posted on 2017-11-22 23:52  土匪7  阅读(165)  评论(0编辑  收藏  举报