SwiftGif
A small UIImage extension with gif support.
Usage
Installation
CocoaPods
Install CocoaPods with the following command:
Integrate SwiftGif into your Xcode project by creating a Podfile
:
Run pod install
to build your dependencies.
Carthage
Install Carthage with
Homebrew using the following command:
Add the following line to your Cartfile
to add SwiftGif:
Run carthage update
to build the framework and drag the built
SwiftGif.framework
into your Xcode project.
How does it work?
Easy, it does the following:
- Find out the duration of every frame
- Find the greatest common divisor
- Add frames accordingly to the greatest common divisor to an array
- Create an animated UIImage with the frames
Testing
$ xcodebuild \
-project SwiftGif.xcodeproj \
-scheme SwiftGif \
-sdk iphonesimulator \
-destination "platform=iOS Simulator,name=iPhone 8" \
build test \
CODE_SIGNING_REQUIRED=NO CODE_SIGN_IDENTITY=""