1.UIView
//初始状态
[UIView animateWithDuration:(int) animations:^{
//最终状态
}completion:^(BOOL finished){
//动画完成后需要做的事情
}];
2.UIView
//初始状态
[UIView startAnimation];
[UIView setAnimationDuration:(int)];
//最终状态
[UIView commitAnimation];
3.UIImageView
myImageView.animationArray = imagesArray;//动画图片数组
myImageView.animationDuration = (int);//动画播放时间
myImageView.animationCount = (int);//动画播放次数,0代表循环播放,其他代表播放几次
[myImageView startAnimation];//开始播放动画