// 下載SDWebImage庫 導入此頭文件
spa
#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];
}it