博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

UI-动画

Posted on 2015-07-29 09:02  JodyChen  阅读(125)  评论(0编辑  收藏  举报

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

 

 

 

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

//常用的两个方法:

 

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

1.animateWithDuration:(NSTimeInterval) animations:^{

        <#code#>

    }

 

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

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

        <#code#>

    } completion:^(BOOL finished) {

        <#code#>

    }

 

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