如何获得gif资产UIImage

时间:2016-05-21 18:50:03

标签: ios objective-c uiimage gif animated-gif

如何将动画GIF 图片作为 UIImage *.imageset文件夹加载到不同的分辨率,而不添加任何其他广告连播?

如果我将我的GIF图像放在*.imageset文件夹中,它们会在XCode http://take.ms/7fsCp中正确显示,但是当我尝试使用UIImage加载它时,它会返回 nil

UIImage *image = [UIImage imageNamed: @"help_image"];

如何使其有效?

2 个答案:

答案 0 :(得分:2)

您可以使用SDWebImage来执行此操作。

#import "UIImage+GIF.h"

self.imageViewGif.image= [UIImage sd_animatedGIFNamed:@"help_image"];

我希望这可以帮到你。

答案 1 :(得分:0)

Add animated Gif image in Iphone UIImageView

检查此链接,您将获得答案使用UIImage类别,您可以获得exect输出。