SwiftyGif

High performance GIF engine

MIT License

Stars
1.9K
Committers
54

Bot releases are hidden (Show)

SwiftyGif - 5.4.4 Latest Release

Published by kirualex almost 2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/kirualex/SwiftyGif/compare/5.4.3...5.4.4

SwiftyGif - 5.4.3

Published by kirualex over 2 years ago

  • tvOS support
  • Fix for ProMotion display
SwiftyGif - 5.4.2

Published by kirualex almost 3 years ago

  • 418224b1 Fix objc_getAssociatedObject crashing on weak reference
SwiftyGif - 5.4.1

Published by kirualex almost 3 years ago

  • Fix crash when gif loaded from url and delegate has been deallocate
  • Fix index out of range
  • Add library evolution support
  • Package.swift: adds dynamic library
SwiftyGif -

Published by kirualex over 3 years ago

  • FIxed : Gif animations play at different speeds on iPad vs iPhone
  • FIxed : method "gifDidStop" will execute twice
  • Added : basic support for macOS
  • Changed : bump IPHONEOS_DEPLOYMENT_TARGET to 9.0 to remove warning
  • Changed : Removed big files from repo
SwiftyGif - 5.3.0

Published by kirualex over 4 years ago

  • Updated setGifFromURL by adding parameter customLoader: UIView? = nil, allowing for custom loader UIView.
    A typical use would be something like :
let loader = UIActivityIndicatorView.init(style: .white)
self.imageView.setGifFromURL(url, customLoader: loader)
  • Updated setGifFromURL by adding parameter session: URLSession = URLSession.shared, allowing for custom URLSession.
  • Added a basic caching system for remote GIFs
  • Updated Demo project in order to demonstrate local GIFs and GIFs in a UITableView