uiview 永久旋转动画

来源:互联网 发布:期货交易所 数据接口 编辑:程序博客网 时间:2024/04/29 19:17

- (void)startAnimation

{

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

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

    rotationAnimation.duration = 2;

    rotationAnimation.cumulative = YES;

    rotationAnimation.repeatCount = HUGE_VALF;

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

}


- (void)stopAnimation

{

    [_cloudArrow.layer removeAllAnimations];

}

0 0