国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 系統(tǒng) > iOS > 正文

iOS中g(shù)if圖的顯示方法示例

2020-07-26 02:19:45
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

一、前言

iOS開發(fā)中,大部分時(shí)候我們顯示一張靜態(tài)圖就可以了,但是有的時(shí)候?yàn)榱薝I表現(xiàn)更生動(dòng),我就有可能需要展示gif圖來(lái)達(dá)到效果了。

網(wǎng)上找了一下,顯示gif圖的框架找到了兩個(gè)。

  • SDWebImage
  • YYImage

二、顯示本地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];}

三、加載網(wǎng)絡(luò)的gif圖

SDWebImage和YYImage的加載網(wǎng)絡(luò)圖片代碼。

//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文件內(nèi)容

platform :ios, '10.0'inhibit_all_warnings!target 'GifDemo' dopod 'YYImage'pod 'SDWebImage/GIF'pod 'FLAnimatedImage'end

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

SDWebImage和YYImage框架顯示本地和網(wǎng)絡(luò)gif圖的demo傳送門

總結(jié)

以上就是這篇文章的全部?jī)?nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,謝謝大家對(duì)武林網(wǎng)的支持。

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 常德市| SHOW| 双城市| 靖安县| 潼关县| 名山县| 扬州市| 乐业县| 泽库县| 杂多县| 扎鲁特旗| 临朐县| 萨迦县| 花莲县| 托克托县| 钦州市| 奎屯市| 井陉县| 连城县| 锦州市| 麻栗坡县| 昭平县| 得荣县| 东兴市| 丰宁| 贵德县| 寻甸| 白城市| 诏安县| 丹凤县| 策勒县| 乌海市| 吉林省| 乳源| 平昌县| 新源县| 静宁县| 临安市| 呼玛县| 商城县| 嘉鱼县|