UI-动画

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

UI-动画

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

//常用的两个方法:

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

1.animateWithDuration:(NSTimeInterval) animations:^{

<#code#>

}

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

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

<#code#>

} completion:^(BOOL finished) {

<#code#>

}

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

UI-动画

上一篇:VS2017 Cordova 出现错误 @ionic/app-scripts 未安装


下一篇:Java实现BASE64编解码