├── .gitignore ├── .travis.yml ├── Cartfile ├── Cartfile.resolved ├── Example ├── Podfile ├── SDWebImageFLPlugin.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── SDWebImageFLPlugin-Example.xcscheme │ │ └── SDWebImageFLPlugin_Tests.xcscheme ├── SDWebImageFLPlugin.xcworkspace │ └── contents.xcworkspacedata ├── SDWebImageFLPlugin │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── SDAppDelegate.h │ ├── SDAppDelegate.m │ ├── SDViewController.h │ ├── SDViewController.m │ ├── SDWebImageFLPlugin-Info.plist │ ├── SDWebImageFLPlugin-Prefix.pch │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m └── Tests │ ├── Images │ └── TestImage.gif │ ├── SDFLAnimatedImageTests.m │ ├── SDTestCase.h │ ├── SDTestCase.m │ ├── SDWebCacheCategoriesTests.m │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── Package.swift ├── README.md ├── SDWebImageFLPlugin.podspec ├── SDWebImageFLPlugin.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── SDWebImageFLPlugin.xcscheme └── SDWebImageFLPlugin ├── Assets └── .gitkeep ├── Classes ├── .gitkeep └── FLAnimatedImageBridge │ ├── FLAnimatedImageView+WebCache.h │ ├── FLAnimatedImageView+WebCache.m │ ├── SDFLAnimatedImage.h │ └── SDFLAnimatedImage.m └── Module ├── Info.plist ├── SDWebImageFLPlugin.h └── SDWebImageFLPlugin.modulemap /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/Cartfile -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/Cartfile.resolved -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/SDWebImageFLPlugin.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/Example/SDWebImageFLPlugin.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/SDWebImageFLPlugin.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/Example/SDWebImageFLPlugin.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SDWebImageFLPlugin.xcodeproj/xcshareddata/xcschemes/SDWebImageFLPlugin-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/Example/SDWebImageFLPlugin.xcodeproj/xcshareddata/xcschemes/SDWebImageFLPlugin-Example.xcscheme -------------------------------------------------------------------------------- /Example/SDWebImageFLPlugin.xcodeproj/xcshareddata/xcschemes/SDWebImageFLPlugin_Tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/Example/SDWebImageFLPlugin.xcodeproj/xcshareddata/xcschemes/SDWebImageFLPlugin_Tests.xcscheme -------------------------------------------------------------------------------- /Example/SDWebImageFLPlugin.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/Example/SDWebImageFLPlugin.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SDWebImageFLPlugin/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/Example/SDWebImageFLPlugin/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/SDWebImageFLPlugin/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/Example/SDWebImageFLPlugin/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/SDWebImageFLPlugin/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/Example/SDWebImageFLPlugin/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/SDWebImageFLPlugin/SDAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/Example/SDWebImageFLPlugin/SDAppDelegate.h -------------------------------------------------------------------------------- /Example/SDWebImageFLPlugin/SDAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/Example/SDWebImageFLPlugin/SDAppDelegate.m -------------------------------------------------------------------------------- /Example/SDWebImageFLPlugin/SDViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/Example/SDWebImageFLPlugin/SDViewController.h -------------------------------------------------------------------------------- /Example/SDWebImageFLPlugin/SDViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/Example/SDWebImageFLPlugin/SDViewController.m -------------------------------------------------------------------------------- /Example/SDWebImageFLPlugin/SDWebImageFLPlugin-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/Example/SDWebImageFLPlugin/SDWebImageFLPlugin-Info.plist -------------------------------------------------------------------------------- /Example/SDWebImageFLPlugin/SDWebImageFLPlugin-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/Example/SDWebImageFLPlugin/SDWebImageFLPlugin-Prefix.pch -------------------------------------------------------------------------------- /Example/SDWebImageFLPlugin/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/SDWebImageFLPlugin/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/Example/SDWebImageFLPlugin/main.m -------------------------------------------------------------------------------- /Example/Tests/Images/TestImage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/Example/Tests/Images/TestImage.gif -------------------------------------------------------------------------------- /Example/Tests/SDFLAnimatedImageTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/Example/Tests/SDFLAnimatedImageTests.m -------------------------------------------------------------------------------- /Example/Tests/SDTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/Example/Tests/SDTestCase.h -------------------------------------------------------------------------------- /Example/Tests/SDTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/Example/Tests/SDTestCase.m -------------------------------------------------------------------------------- /Example/Tests/SDWebCacheCategoriesTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/Example/Tests/SDWebCacheCategoriesTests.m -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/README.md -------------------------------------------------------------------------------- /SDWebImageFLPlugin.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/SDWebImageFLPlugin.podspec -------------------------------------------------------------------------------- /SDWebImageFLPlugin.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/SDWebImageFLPlugin.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SDWebImageFLPlugin.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/SDWebImageFLPlugin.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SDWebImageFLPlugin.xcodeproj/xcshareddata/xcschemes/SDWebImageFLPlugin.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/SDWebImageFLPlugin.xcodeproj/xcshareddata/xcschemes/SDWebImageFLPlugin.xcscheme -------------------------------------------------------------------------------- /SDWebImageFLPlugin/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SDWebImageFLPlugin/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SDWebImageFLPlugin/Classes/FLAnimatedImageBridge/FLAnimatedImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/SDWebImageFLPlugin/Classes/FLAnimatedImageBridge/FLAnimatedImageView+WebCache.h -------------------------------------------------------------------------------- /SDWebImageFLPlugin/Classes/FLAnimatedImageBridge/FLAnimatedImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/SDWebImageFLPlugin/Classes/FLAnimatedImageBridge/FLAnimatedImageView+WebCache.m -------------------------------------------------------------------------------- /SDWebImageFLPlugin/Classes/FLAnimatedImageBridge/SDFLAnimatedImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/SDWebImageFLPlugin/Classes/FLAnimatedImageBridge/SDFLAnimatedImage.h -------------------------------------------------------------------------------- /SDWebImageFLPlugin/Classes/FLAnimatedImageBridge/SDFLAnimatedImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/SDWebImageFLPlugin/Classes/FLAnimatedImageBridge/SDFLAnimatedImage.m -------------------------------------------------------------------------------- /SDWebImageFLPlugin/Module/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/SDWebImageFLPlugin/Module/Info.plist -------------------------------------------------------------------------------- /SDWebImageFLPlugin/Module/SDWebImageFLPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/SDWebImageFLPlugin/Module/SDWebImageFLPlugin.h -------------------------------------------------------------------------------- /SDWebImageFLPlugin/Module/SDWebImageFLPlugin.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDWebImage/SDWebImageFLPlugin/HEAD/SDWebImageFLPlugin/Module/SDWebImageFLPlugin.modulemap --------------------------------------------------------------------------------