亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

iOS中gif圖的顯示方法示例

發布時間:2020-09-19 06:15:42 來源:腳本之家 閱讀:470 作者:藍光95 欄目:移動開發

一、前言

iOS開發中,大部分時候我們顯示一張靜態圖就可以了,但是有的時候為了UI表現更生動,我就有可能需要展示gif圖來達到效果了。

網上找了一下,顯示gif圖的框架找到了兩個。

  • SDWebImage
  • YYImage

iOS中gif圖的顯示方法示例

二、顯示本地gif圖

SDWebImage和YYImage的顯示本地圖片代碼。

//load loacle gif image
- (void)loadLocaleGifImage{
 
 //sdwebimage
 [self labelFactoryWithFrame:CGRectMake(0, 80, kScreenWidth, 20) title:@"SDWebImage"];
 NSString *path = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"gif"];
 NSData *gifData = [NSData dataWithContentsOfFile:path];
 UIImageView *sdImageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 100, kScreenWidth, kScreenHeight/3)];
 sdImageView.image = [UIImage sd_animatedGIFWithData:gifData];
 [self.view addSubview:sdImageView];
 
 //yyImage show gif image
 [self labelFactoryWithFrame:CGRectMake(0, kScreenHeight/2 - 20, kScreenWidth, 20) title:@"yyImage"];
 YYImage *yyimage = [YYImage imageNamed:@"test.gif"];
 YYAnimatedImageView *yyImageView = [[YYAnimatedImageView alloc] initWithImage:yyimage];
 yyImageView.frame = CGRectMake(0, kScreenHeight/2, kScreenWidth, kScreenHeight/3);
 [self.view addSubview:yyImageView];
}

三、加載網絡的gif圖

SDWebImage和YYImage的加載網絡圖片代碼。

//download network gif image
- (void)downloadNetworkGifImage{
 
 //sdwebimage
 [self labelFactoryWithFrame:CGRectMake(0, 80, kScreenWidth, 20) title:@"SDWebImage"];
 FLAnimatedImageView *sdImageView = [[FLAnimatedImageView alloc] initWithFrame:CGRectMake(0, 100, kScreenWidth, kScreenHeight/3)];
 [sdImageView sd_setImageWithURL:[NSURL URLWithString:@"http://photocdn.sohu.com/20151214/mp48444247_1450092561460_10.gif"]];
 [self.view addSubview:sdImageView];
 
 //yyImage show gif image
 [self labelFactoryWithFrame:CGRectMake(0, kScreenHeight/2 - 20, kScreenWidth, 20) title:@"yyImage"];
 YYImage *yyimage = [YYImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://photocdn.sohu.com/20151214/mp48444247_1450092561460_10.gif"]]];
 YYAnimatedImageView *yyImageView = [[YYAnimatedImageView alloc] initWithImage:yyimage];
 yyImageView.frame = CGRectMake(0, kScreenHeight/2, kScreenWidth, kScreenHeight/3);
 [self.view addSubview:yyImageView];
}

- (void)labelFactoryWithFrame:(CGRect)frame title:(NSString *)title{
 
 UILabel *label = [[UILabel alloc] initWithFrame:frame];
 label.textAlignment = NSTextAlignmentCenter;
 label.textColor = [UIColor blackColor];
 label.font = [UIFont systemFontOfSize:14];
 label.text = title;
 [self.view addSubview:label];
}

四、Podfile文件內容

platform :ios, '10.0'
inhibit_all_warnings!

target 'GifDemo' do

pod 'YYImage'
pod 'SDWebImage/GIF'
pod 'FLAnimatedImage'

end

五、沒有demo的文章不是好文章

SDWebImage和YYImage框架顯示本地和網絡gif圖的demo傳送門

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

博兴县| 肃北| 凤山县| 南和县| 朔州市| 两当县| 遵义市| 林口县| 万年县| 报价| 恭城| 南开区| 通渭县| 南乐县| 琼中| 卢湾区| 镇雄县| 绥芬河市| 华阴市| 通海县| 襄垣县| 铁岭市| 通化市| 南汇区| 侯马市| 高平市| 长武县| 天柱县| 临清市| 兰溪市| 宜良县| 双鸭山市| 平山县| 郁南县| 汪清县| 洛川县| 定远县| 宜君县| 四平市| 通江县| 洛扎县|