iOS 小动画

  一。图片旋转

  CABasicAnimation* rotationAnimation;

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

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

        rotationAnimation.duration = 1;

        rotationAnimation.cumulative = YES;

        rotationAnimation.repeatCount = 0;

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

iOS 小动画,布布扣,bubuko.com

iOS 小动画

上一篇:MVC是一种用于表示层设计的复合设计模式


下一篇:android源码下载以及编译自己的ROM