Quantcast
Channel: CSDN博客移动开发推荐文章
Viewing all articles
Browse latest Browse all 5930

iOS:在界面显示gif动画图片

$
0
0

默认cocoa touch无此功能,不过我们可以站在github肩上轻松实现该功能。

github地址:https://github.com/bahlo/SwiftGif

首先是安装CocoaPods,Pods依赖RubyGem,由于国内网络条件导致会出现安装卡死的现象,如果出现类似的问题,大家可以参考我ruby安装源的相关文章。

安装CocoaPods本质上很简单,就一行命令:

gem install cocoapods

然后到你的项目目录中,新建Podfile文件,内容如下:

platform :ios, '9.0'
use_frameworks!

target '<Your Target Name>' do
    pod 'SwiftGifOrigin', '~> 1.6.1'
end

然后控制台进入该路径,安装pod包即可:

pod install

github主页中还介绍了使用Carthage安装SwiftGif的方法,因为我只用pod所以略去。

使用起来很简单:

// An animated UIImage
let jeremyGif = UIImage.gif(name: "jeremy")

// A UIImageView with async loading
let imageView = UIImageView()
imageView.loadGif(name: "jeremy")

以下是在我项目中使用的效果:

这里写图片描述

作者:mydo 发表于2017/9/7 6:31:16 原文链接
阅读:129 评论:0 查看评论

Viewing all articles
Browse latest Browse all 5930

Trending Articles