加载GIF动画方法 iOS

方法一 使用UIWebView

_codeStr为gif网址      如果是本地的gif可以直接使用dataWithContentsOfFile方法

   NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:_codeStr]];

   UIWebView  *codeWebView = [[UIWebView alloc] initWithFrame:CGRectMake(0,0,45, 45)];

   [codeWebView loadData:data MIMEType:@"image/gif" textEncodingName:nil baseURL:nil];

   [self.view addSubview:codeWebView];

该方法有一个弊端就是    gif图的大小不能改变,显示的就是它本来的大小。

方法二  通过SDWebImage方法 导入UIImage+GIF.h

    UIImageView *codeImageView = [[UIImageView alloc]initWithFrame:CGRectMake(0,0,45, 45)];

    NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:_codeStr]];

    UIImage *image = [UIImage sd_animatedGIFWithData:data];//实现gif图的展示

    codeImageView.image = image;

    [self.view addSubview:codeImageView];

原文地址:https://www.cnblogs.com/qiutangfengmian/p/5775832.html