美文网首页
SD加载本地GIF图

SD加载本地GIF图

作者: JohnayXiao | 来源:发表于2019-05-30 17:30 被阅读0次
    - (void)imageViewLocalGif {
        NSString *imagePath = [[NSBundle mainBundle] pathForResource:@"happy" ofType:@"gif"];
        NSData *imageData = [NSData dataWithContentsOfFile:imagePath];
        UIImage *image = [UIImage sd_animatedGIFWithData:imageData];
    
        UIImageView *imageView = self.viewArr[2];
        imageView.image = image;
    }
    

    相关文章

      网友评论

          本文标题:SD加载本地GIF图

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