动画(三)UIImageView序列帧动画

其实 UIImageView序列帧的动画很简单,需要注意的是内存管理,需要及时释放图片内存,创建图片最好用imageWithContentsOfFile方法,数组用局部数组,不多说,直接上代码吧。
核心代码如下:

//设置UIImageViews 动画图片数组
self.imgV.animationImages = [self imageArr];
//设置动画时长
[self.imgV setAnimationDuration:26/10.0];
//设置动画次数
 [self.imgV setAnimationRepeatCount:1];
//开始动画
 [self.imgV startAnimating];
//停止动画
 [self.imgV stopAnimating];

附demo一份:demo

你可能感兴趣的:(动画(三)UIImageView序列帧动画)