一。圖片旋轉orm
CABasicAnimation* rotationAnimation;圖片
rotationAnimation = [CABasicAnimation animationWithKeyPath:@"transform.rotation.z"];animation
rotationAnimation.toValue = [NSNumber numberWithFloat: M_PI * 2.0 ];it
rotationAnimation.duration = 1;io
rotationAnimation.cumulative = YES;form
rotationAnimation.repeatCount = 0;transform
[customView.layer addAnimation:rotationAnimation forKey:@"rotationAnimation"];im