asGifImageView icon indicating copy to clipboard operation
asGifImageView copied to clipboard

非常简单的 UIImageView显示Gif图 扩展类

##支持Gif图的UIImageView ####示例图 gifUIImageView
####功能说明: 这是一个UIImageView的分类,可以让UIImageView支持显示本地Gif以及网络Gif图片。 ####使用说明 1.导入分类头文件 #import "UIImageView+ASGif.h"
2.调用
 a.显示本地gif图片
[self.gifImgV showGifImageWithData:[NSData dataWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"abc" ofType:@"gif"]]];
 b.显示网络gif图片
[self.gifImgV showGifImageWithURL:[NSURL URLWithString:@"http://ww1.sinaimg.cn/large/85cccab3gw1etdi67ue4eg208q064n50.gif"]];