动画

作者: DDY | 来源:发表于2016-11-10 18:36 被阅读31次
    禁升iOS10.png

    前后翻转效果

    Rotation.gif
    CABasicAnimation* rotation;
    rotation = [CABasicAnimation animationWithKeyPath:@"transform.rotation.y"];
    rotation.toValue = [NSNumber numberWithFloat: M_PI/2.0];
    rotation.duration = 1;
    rotation.cumulative = YES;
    rotation.repeatCount = MAXFLOAT;
    [imgV.layer addAnimation:rotation forKey:@"rotationAnimation"];
    

    附:

    相关文章

      网友评论

          本文标题:动画

          本文链接:https://www.haomeiwen.com/subject/jcuxpttx.html