超简单一个方法实现播放动画
代码比较大 请移步github : https://github.com/shabake/GHProject
- (void)playAnimateWithName:(NSString *)name framesNumber:(int)frames {
// 动画可能被打断
if (self.imageView.isAnimating) {
return;
}
// 1.取出所有的这个动画相关的序列图片,生成一个数组用来存放这些图片
// 1.1生成数组
NSMutableArray *array = [NSMutableArray array];
// 1.2循环生成图片名,根据图片名把图片存入数组
for (int i = 0; i < frames; i++) {
NSString *string = [NSString stringWithFormat:@"eat_d", i];
// 生成图片
UIImage *image = [UIImage imageNamed:string];
// 将图片加入数组
[array addObject:image];
}
// 1.3把数组存入UIImageView中 self.imageView.animati
// 1.4 option self.imageView.animati
// fps 12 self.imageView.animati / 12;
// 1.5播放动画
[self.imageView startAnimating];
// self.animationImageView.animati
[self.imageView performSelector:@selector(setAnimationImages:) withObject:nil afterDelay:self.imageView.animationDuration];
}
下载地址:http://www.wenjiangs.com/wp-content/uploads/2021/docimg35/60791026e33abef931b1f8c3336716a3.zip
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论