Go to file
Reda Lemeden e14b53193f Add Swift 2.0 support
One step closer to 1.0. Changes include:

- Refactor the API
- Make image source non-optional
- Use submodule for Runes dependency
- Add specs
- Remove Runes framework dependency
2015-10-22 19:14:35 +02:00
Carthage/Checkouts Add Swift 2.0 support 2015-10-22 19:14:35 +02:00
Demo Add Swift 2.0 support 2015-10-22 19:14:35 +02:00
Gifu.xcodeproj Add Swift 2.0 support 2015-10-22 19:14:35 +02:00
Gifu.xcworkspace Add Swift 2.0 support 2015-10-22 19:14:35 +02:00
GifuTests Add Swift 2.0 support 2015-10-22 19:14:35 +02:00
Source Add Swift 2.0 support 2015-10-22 19:14:35 +02:00
.gitignore Add Swift 2.0 support 2015-10-22 19:14:35 +02:00
.gitmodules Add Swift 2.0 support 2015-10-22 19:14:35 +02:00
Cartfile.private Add Swift 2.0 support 2015-10-22 19:14:35 +02:00
Cartfile.resolved Add Swift 2.0 support 2015-10-22 19:14:35 +02:00
LICENSE Update LICENSE & README 2014-09-10 21:41:13 +02:00
README.md Add Swift 2.0 support 2015-10-22 19:14:35 +02:00

README.md

Adds performant animated GIF support to UIKit. If you're looking for the Japanese prefecture, click here.

How?

Gifu uses a UIImageView subclass and an animator that keeps track of frames and their durations.

It uses CADisplayLink to animate the view and only keeps a limited number of resized frames in-memory, which exponentially minimizes memory usage for large GIF files (+300 frames).

The figure below summarizes how this works in practice. Given an image containing 10 frames, Gifu will load the current frame (red), pre-load the next two frames in this example (orange), and nullify all the other frames to free up memory (gray):

Install

If you use Carthage, add this to your cartfile: github "kaishin/gifu".

If your prefer Git submodules or want to support iOS 7, you want to add the files in source to your Xcode project.

Usage

Start by instantiating an AnimatableImageView either in code or Interface Builder, then call animateWithImage(named:) or animateWithImageData(data:) on it.

let imageView = AnimatableImageView(frame: CGRect(...))
imageView.animateWithImage(named: "mugen.gif")

You can stop the animation anytime using imageView.stopAnimatingGIF(), and resume it using imageView.startAnimatingGIF().

The isAnimatingGIF() method returns the current animation state of the view if it has an animatable image.

Demo App

Clone or download the repository and open Gifu.xcworkspace to check out the demo app.

Compatibility

  • iOS 7+

Roadmap

  • Documentation.
  • Add ability to set the frame-rate

Contributors

Misc

  • The font used in the logo is Azuki
  • The characters used in the icon and example image in the demo are from Samurai Champloo.

License

See LICENSE.