美文网首页
动画加载 360度旋转

动画加载 360度旋转

作者: 每天刷两次牙 | 来源:发表于2016-11-07 11:26 被阅读13次

    /**核心代码 */

    CABasicAnimation* rotationAnimation;

    rotationAnimation = [CABasicAnimation animationWithKeyPath:@"transform.rotation.z"];

    rotationAnimation.toValue = [NSNumber numberWithFloat: M_PI * 2.0 ];

    rotationAnimation.duration = duration;

    rotationAnimation.cumulative = YES;

    rotationAnimation.repeatCount = repeat;

    [_loadingView.layer addAnimation:rotationAnimation forKey:@"rotationAnimation"];

    相关文章

      网友评论

          本文标题:动画加载 360度旋转

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