博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
IOS自得其乐系列(一)-------------------加载动态图片
阅读量:5101 次
发布时间:2019-06-13

本文共 667 字,大约阅读时间需要 2 分钟。

 

 

此处使用文件  FLAnimatedImage   FLAnimatedImageView   中的方法傻瓜式加载动态图

 

  NSString *gifpath = [[NSBundle mainBundle] pathForResource:@"bear" ofType:@"gif"];

    FLAnimatedImage *image = [[FLAnimatedImage alloc] initWithAnimatedGIFData:[NSData dataWithContentsOfFile:gifpath]];         从本地加载

    FLAnimatedImage *image = [[FLAnimatedImage alloc] initWithAnimatedGIFData:[NSData dataWithContentsOfURL:[NSURL    URLWithString:@""]]];                                                                                   通过网址加载

    FLAnimatedImageView *imageView = [[FLAnimatedImageView alloc] init];

    imageView.animatedImage = image;

    imageView.frame = CGRectMake(50.0, 400, 250.0, 200.0);

转载于:https://www.cnblogs.com/fsliu/p/4238939.html

你可能感兴趣的文章
关于BOM知识的整理
查看>>
使用word发布博客
查看>>
面向对象的小demo
查看>>
微服务之初了解(一)
查看>>
GDOI DAY1游记
查看>>
收集WebDriver的执行命令和参数信息
查看>>
数据结构与算法(三)-线性表之静态链表
查看>>
mac下的mysql报错:ERROR 1045(28000)和ERROR 2002 (HY000)的解决办法
查看>>
Hmailserver搭建邮件服务器
查看>>
django之多表查询-2
查看>>
快速幂
查看>>
改善C#公共程序类库质量的10种方法
查看>>
AIO 开始不定时的抛异常: java.io.IOException: 指定的网络名不再可用
查看>>
MyBaits动态sql语句
查看>>
HDU4405(期望DP)
查看>>
拉格朗日乘子法 那些年学过的高数
查看>>
vs code 的便捷使用
查看>>
Spring MVC @ResponseBody返回中文字符串乱码问题
查看>>
用户空间与内核空间,进程上下文与中断上下文[总结]
查看>>
JS 中的跨域请求
查看>>