如何开始对 tableView 中的每个单元格进行 .gif 动画?
当我在表格视图中选择一个单元格时,.gif 的动画停止。怎么解决,谁能给我一些建议?
When I choose a cell in the tableview, the animation of .gif is stoped. how to solve it,who can give me some suggestion?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
iOS 不支持
gif
动画。你必须这样做 -iOS does not support
gif
animaiton. You'll have to do it like so -据我所知 iPhone SDK 不支持 .gif,你必须通过 UIView 自己制作动画
As far as i know the iPhone SDK doesnt do .gifs you have to to do the animation yourself via UIView
UIImage
没有内置对动画 GIF 的支持,但使用 Image I/O 框架加载它们非常容易。图像 I/O 编程指南< /em>
图像 I/O 参考集合
我有示例代码,可以从 github 上的动画 GIF 创建动画
UIImage
:https://github.com/mayoff/uiimage-from-animated-gif
UIImage
doesn't have built-in support for animated GIFs, but it's pretty easy to use the Image I/O framework to load them.Image I/O Programming Guide
Image I/O Reference Collection
I have sample code that creates an animated
UIImage
from an animated GIF on github:https://github.com/mayoff/uiimage-from-animated-gif