View 做旋转动画

2016-12-02  本文已影响0人  HumilityTree

CABasicAnimation* rotationAnimation;

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

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

rotationAnimation.duration = 0.8;

rotationAnimation.cumulative = YES;

rotationAnimation.repeatCount = 10000;

[hud.customView.layer addAnimation:rotationAnimation forKey:@"rotationAnimation"];

//移除

[hud.customView.layer removeAnimationForKey:@"rotationAnimation"];

上一篇 下一篇

猜你喜欢

热点阅读