为了账号安全,请及时绑定邮箱和手机立即绑定

在Iphone UIImageView中添加动画Gif图像

在Iphone UIImageView中添加动画Gif图像

iOS
长风秋雁 2019-09-19 09:57:38
我需要从UIImageview中的URL加载动画Gif图像。当我使用普通代码时,图像没有加载。有没有其他方法加载动画Gif图像?
查看完整描述

3 回答

?
偶然的你

TA贡献1841条经验 获得超3个赞

UIImageView* animatedImageView = [[UIImageView alloc] initWithFrame:self.view.bounds];

animatedImageView.animationImages = [NSArray arrayWithObjects:    

                               [UIImage imageNamed:@"image1.gif"],

                               [UIImage imageNamed:@"image2.gif"],

                               [UIImage imageNamed:@"image3.gif"],

                               [UIImage imageNamed:@"image4.gif"], nil];

animatedImageView.animationDuration = 1.0f;

animatedImageView.animationRepeatCount = 0;

[animatedImageView startAnimating];

[self.view addSubview: animatedImageView];

您可以加载多个gif图像。


您可以使用以下ImageMagick命令拆分您的gif :


convert +adjoin loading.gif out%d.gif


查看完整回答
反对 回复 2019-09-19
  • 3 回答
  • 0 关注
  • 594 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信