码迷,mamicode.com
首页 > 其他好文 > 详细

使用YYAnimatedImageView加载GIF图,并且可以控制只播放一次

时间:2017-11-30 12:16:01      阅读:2609      评论:0      收藏:0      [点我收藏+]

标签:next   控制   index   ==   url   scribe   gif   setimage   网络   

1.初始化YYAnimatedImageView
YYAnimatedImageView *imageView = [[YYAnimatedImageView alloc] init];
imageView.backgroundColor = [UIColor whiteColor];
imageView.contentMode = UIViewContentModeScaleAspectFit;
[self.view addSubview:imageView];

2.加载网络GIF图片
[imageView yy_setImageWithURL:[NSURL URLWithString:@"gif图url链接"] placeholder:[UIImage imageNamed:@"default"]];

3.通过RAC或者自己写观察者,观察currentAnimatedImageIndex播放到什么位置,如果播放到最后一张图,则停止播放
[RACObserve(imageView, currentAnimatedImageIndex) subscribeNext:^(id _Nullable x) {
if ([x integerValue] == imageView.animationImages.count) {
[_imageView stopAnimating];
}
}];

使用YYAnimatedImageView加载GIF图,并且可以控制只播放一次

标签:next   控制   index   ==   url   scribe   gif   setimage   网络   

原文地址:http://www.cnblogs.com/dbaiyunyun/p/7927693.html

(1)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!