摘要: 把多张图片整合成连续动画,这恐怕是很多苹果开发者需要的功能。下面是单次播放和循环播放的代码:animationImageView.animationImages = imageFrames;// imageFrames 是一个图片数组 animationImageView是一个imageview[UIView setAnimationDelegate:self];animationImageView.animationDuration = 0.75f; animationImageView.animationRepeatCount = 3; [animationImageView startA 阅读全文
posted @ 2011-09-19 11:08 Gang.Wang 阅读(630) 评论(0) 推荐(0) 编辑