Skip to content

Instantly share code, notes, and snippets.

@ahmdmau
Created February 18, 2021 13:48
Show Gist options
  • Save ahmdmau/23e92b3159a0ea4695d39ca13dc083fc to your computer and use it in GitHub Desktop.
Save ahmdmau/23e92b3159a0ea4695d39ca13dc083fc to your computer and use it in GitHub Desktop.
Extension FLAnimatedImage for loading gif in asset
import UIKit
import FLAnimatedImage
extension FLAnimatedImage {
convenience init (gifResource: String) {
if let data = NSDataAsset(name: gifResource) {
self.init(animatedGIFData: data.data)
} else {
self.init(animatedGIFData: nil)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment