iOS动画

1. UIView beginAnimations

2. UIView animateWithDuration 系列(block方式)

3. UIView transitionFromView 和 UIView transitionWithView(转场动画)

4. [UIImage animatedImageWithImages: duration:]和 _tempUIImageVIew startAnimating  (Gif原理)

5. UIView animateKeyframesWithDuration 和 UIView addKeyframe

6. Core Animation

提示:在修改了自动布局的约束之后,执行下面代码实现动画效果 [UIView animateWithDuration:1.0 animations:^{
[添加了约束的view layoutIfNeeded];
}];

原文地址:https://www.cnblogs.com/lihaiyin/p/4425161.html