如何为gif图像添加占位符图像?

时间:2018-08-29 03:32:12

标签: ios objective-c uiimage animated-gif

我有一个下面的代码,我可能知道如何在其中添加占位符图像吗?

#import "UIImage+animatedGIF.h"

_imgPromotion_Image.image = [UIImage animatedImageWithAnimatedGIFURL:[NSURL URLWithString:_strPromotion_Image]];

请帮助。谢谢。

1 个答案:

答案 0 :(得分:1)

添加以下广告连播

pod'SDWebImage','〜> 4.4.1'

pod“ SDWebImage / GIF”

现在导入

#import "FLAnimatedImage.h"
#import <SDWebImage/UIImageView+WebCache.h>

到您的ViewController,然后尝试-

NSString *urlStr = @"https://staticimg.ngmm365.com/0dd3a526e657396c3dfba57799a2e5e4-w750_h336.gif";

FLAnimatedImageView *gifImageView  = [[FLAnimatedImageView alloc] init];
gifImageView.contentMode =  UIViewContentModeScaleAspectFit;
CGFloat y = (self.view.frame.size.height-self.view.frame.size.width)/2;
gifImageView.frame = CGRectMake(0, y, self.view.frame.size.width, self.view.frame.size.width);
[self.view addSubview:gifImageView];

[gifImageView sd_setImageWithURL:[NSURL URLWithString:urlStr] placeholderImage:[UIImage imageNamed:@"placeholder.png"]];

output result