动画

动画_第1张图片
禁升iOS10.png

前后翻转效果

动画_第2张图片
Rotation.gif
CABasicAnimation* rotation;
rotation = [CABasicAnimation animationWithKeyPath:@"transform.rotation.y"];
rotation.toValue = [NSNumber numberWithFloat: M_PI/2.0];
rotation.duration = 1;
rotation.cumulative = YES;
rotation.repeatCount = MAXFLOAT;
[imgV.layer addAnimation:rotation forKey:@"rotationAnimation"];

附:

  • CoreAnimation
  • UIViewAnimationOptions的类型

你可能感兴趣的:(动画)