iOS学习-使用FLAnimatedImage加载Gif

文章介绍了如何在iOS应用中安装和使用FLAnimatedImage第三方库来显示GIF图片,包括从本地文件和URL加载数据,以及设置动画视图的布局约束。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

安装第三方库

pod 'FLAnimatedImage'

引入头文件 FLAnimatedImage

#import "FLAnimatedImageView+WebCache.h"

新建一个FLAnimatedImageView

@property (strong, strong) FLAnimatedImageView *music_play_view;

 创建gif视图,可以使用本地文件或者url展示

    _music_play_view = [FLAnimatedImageView new];
    [self addSubview:_music_play_view];
    [_music_play_view mas_makeConstraints:^(MASConstraintMaker *make) {
        make.centerY.mas_equalTo(self);
        make.left.mas_equalTo(19);
        make.width.mas_equalTo(20);
        make.height.mas_equalTo(20);
    }];
    //文件在本地
    NSData *localData = [NSData dataWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"PlayMusic.gif" ofType:nil]];
    //文件时URL
    //NSData *localData = [NSData dataWithContentsOfURL:[NSURL URLWithString:@"https://xxx.xxx.xxx/media/active_page/1ffN9fa1_20190720092942_301.gif"]];
    FLAnimatedImage *animatedImage = [FLAnimatedImage animatedImageWithGIFData:localData];
    _music_play_view.animatedImage = animatedImage;

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值