使用动态图(GIF)

使用动态图(GIF)_第1张图片

// 下载SDWebImage库  导入此头文件

#import "UIImage+GIF.h"

#pragma mark - 动态图
- (void)loadingImageView {
    
    // 图片名
    NSString *name = @"LN.GIF";
    
    // 获取路径
    NSString *filePath = [[NSBundle bundleWithPath:[[NSBundle mainBundle] bundlePath]] pathForResource:name ofType:nil];
    
    // 转data
    NSData  *imageData = [NSData dataWithContentsOfFile:filePath];
    
    self.imageView.image = [UIImage sd_animatedGIFWithData:imageData];
    
}



你可能感兴趣的:(使用动态图(GIF))