UI-动画

// ------------------UIImageView的动画------------------

// ------------------UIView的动画------------------

//常用的两个方法:

//对改变的视图进行动画

1.animateWithDuration:(NSTimeInterval) animations:^{

        <#code#>

    }

//判断动画什么时候结束然后再调用另一个方法

2.animateWithDuration:<#(NSTimeInterval)#> animations:^{

        <#code#>

    } completion:^(BOOL finished) {

        <#code#>

    }

3.代码实现,放在一个方法里调用:

原文地址:https://www.cnblogs.com/chenhongios/p/4684971.html