SwiftGif 介绍
SwiftGif 是 Swift 对 UIImage 的扩展,实现了 Gif 动画图像的支持。

示例代码:
// jeremy.gif
var url = NSBundle.mainBundle().URLForResource("jeremy", withExtension: "gif")
var imageData = NSData(contentsOfURL: url)
// Returns an animated UIImage
UIImage.animatedImageWithData(imageData)
SwiftGif 官网
https://github.com/bahlo/SwiftGif