美文网首页
SDWebImage加载网络GIF

SDWebImage加载网络GIF

作者: 倪大头 | 来源:发表于2018-07-22 18:07 被阅读423次
    pod 'SDWebImage/GIF'
    
    FLAnimatedImage *image = [[FLAnimatedImage alloc]initWithAnimatedGIFData:[NSData dataWithContentsOfURL:[NSURL URLWithString:urlStr]]];
    FLAnimatedImageView *imageView = [[FLAnimatedImageView alloc]initWithFrame:CGRectMake(100, 100, 100, 100)];
    imageView.animatedImage = image;
    [self.view addSubview:imageView];
    

    相关文章

      网友评论

          本文标题:SDWebImage加载网络GIF

          本文链接:https://www.haomeiwen.com/subject/wfcrmftx.html