├── LICENSE ├── README.md ├── YLGIFImage.podspec ├── YLGIFImage.xcodeproj └── project.pbxproj ├── YLGIFImage ├── YLGIFImage.h ├── YLGIFImage.m ├── YLGIFImageInSwiftProjectDemo-Bridging-Header.h ├── YLImageView.h └── YLImageView.m ├── YLGIFImageDemo ├── YLGIFImageDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── YLGIFImageDemo │ ├── .DS_Store │ ├── DemoViewController.h │ ├── DemoViewController.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Launch Screen.xib │ ├── YLAppDelegate.h │ ├── YLAppDelegate.m │ ├── YLGIFImageDemo-Info.plist │ ├── YLGIFImageDemo-Prefix.pch │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── joy.gif │ └── main.m └── YLGIFImageDemoTests │ ├── YLGIFImageDemoTests-Info.plist │ ├── YLGIFImageDemoTests.m │ └── en.lproj │ └── InfoPlist.strings ├── YLGIFImageInSwiftProjectDemo ├── YLGIFImageInSwiftProjectDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── yongli.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── yongli.xcuserdatad │ │ └── xcschemes │ │ └── YLGIFImageInSwiftProjectDemo.xcscheme ├── YLGIFImageInSwiftProjectDemo │ ├── AppDelegate.swift │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Info.plist │ ├── ViewController.swift │ ├── YLGIFImageInSwiftProjectDemo-Bridging-Header.h │ └── iwatch.gif └── YLGIFImageInSwiftProjectDemoTests │ ├── Info.plist │ └── YLGIFImageInSwiftProjectDemoTests.swift ├── YLGIFImageTests ├── YLGIFImageTests-Info.plist ├── YLGIFImageTests.m └── en.lproj │ └── InfoPlist.strings └── screenshot.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/README.md -------------------------------------------------------------------------------- /YLGIFImage.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImage.podspec -------------------------------------------------------------------------------- /YLGIFImage.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImage.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /YLGIFImage/YLGIFImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImage/YLGIFImage.h -------------------------------------------------------------------------------- /YLGIFImage/YLGIFImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImage/YLGIFImage.m -------------------------------------------------------------------------------- /YLGIFImage/YLGIFImageInSwiftProjectDemo-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImage/YLGIFImageInSwiftProjectDemo-Bridging-Header.h -------------------------------------------------------------------------------- /YLGIFImage/YLImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImage/YLImageView.h -------------------------------------------------------------------------------- /YLGIFImage/YLImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImage/YLImageView.m -------------------------------------------------------------------------------- /YLGIFImageDemo/YLGIFImageDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImageDemo/YLGIFImageDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /YLGIFImageDemo/YLGIFImageDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImageDemo/YLGIFImageDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /YLGIFImageDemo/YLGIFImageDemo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImageDemo/YLGIFImageDemo/.DS_Store -------------------------------------------------------------------------------- /YLGIFImageDemo/YLGIFImageDemo/DemoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImageDemo/YLGIFImageDemo/DemoViewController.h -------------------------------------------------------------------------------- /YLGIFImageDemo/YLGIFImageDemo/DemoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImageDemo/YLGIFImageDemo/DemoViewController.m -------------------------------------------------------------------------------- /YLGIFImageDemo/YLGIFImageDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImageDemo/YLGIFImageDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /YLGIFImageDemo/YLGIFImageDemo/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImageDemo/YLGIFImageDemo/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /YLGIFImageDemo/YLGIFImageDemo/Launch Screen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImageDemo/YLGIFImageDemo/Launch Screen.xib -------------------------------------------------------------------------------- /YLGIFImageDemo/YLGIFImageDemo/YLAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImageDemo/YLGIFImageDemo/YLAppDelegate.h -------------------------------------------------------------------------------- /YLGIFImageDemo/YLGIFImageDemo/YLAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImageDemo/YLGIFImageDemo/YLAppDelegate.m -------------------------------------------------------------------------------- /YLGIFImageDemo/YLGIFImageDemo/YLGIFImageDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImageDemo/YLGIFImageDemo/YLGIFImageDemo-Info.plist -------------------------------------------------------------------------------- /YLGIFImageDemo/YLGIFImageDemo/YLGIFImageDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImageDemo/YLGIFImageDemo/YLGIFImageDemo-Prefix.pch -------------------------------------------------------------------------------- /YLGIFImageDemo/YLGIFImageDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /YLGIFImageDemo/YLGIFImageDemo/joy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImageDemo/YLGIFImageDemo/joy.gif -------------------------------------------------------------------------------- /YLGIFImageDemo/YLGIFImageDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImageDemo/YLGIFImageDemo/main.m -------------------------------------------------------------------------------- /YLGIFImageDemo/YLGIFImageDemoTests/YLGIFImageDemoTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImageDemo/YLGIFImageDemoTests/YLGIFImageDemoTests-Info.plist -------------------------------------------------------------------------------- /YLGIFImageDemo/YLGIFImageDemoTests/YLGIFImageDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImageDemo/YLGIFImageDemoTests/YLGIFImageDemoTests.m -------------------------------------------------------------------------------- /YLGIFImageDemo/YLGIFImageDemoTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /YLGIFImageInSwiftProjectDemo/YLGIFImageInSwiftProjectDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImageInSwiftProjectDemo/YLGIFImageInSwiftProjectDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /YLGIFImageInSwiftProjectDemo/YLGIFImageInSwiftProjectDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImageInSwiftProjectDemo/YLGIFImageInSwiftProjectDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /YLGIFImageInSwiftProjectDemo/YLGIFImageInSwiftProjectDemo.xcodeproj/project.xcworkspace/xcuserdata/yongli.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImageInSwiftProjectDemo/YLGIFImageInSwiftProjectDemo.xcodeproj/project.xcworkspace/xcuserdata/yongli.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /YLGIFImageInSwiftProjectDemo/YLGIFImageInSwiftProjectDemo.xcodeproj/xcuserdata/yongli.xcuserdatad/xcschemes/YLGIFImageInSwiftProjectDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImageInSwiftProjectDemo/YLGIFImageInSwiftProjectDemo.xcodeproj/xcuserdata/yongli.xcuserdatad/xcschemes/YLGIFImageInSwiftProjectDemo.xcscheme -------------------------------------------------------------------------------- /YLGIFImageInSwiftProjectDemo/YLGIFImageInSwiftProjectDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImageInSwiftProjectDemo/YLGIFImageInSwiftProjectDemo/AppDelegate.swift -------------------------------------------------------------------------------- /YLGIFImageInSwiftProjectDemo/YLGIFImageInSwiftProjectDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImageInSwiftProjectDemo/YLGIFImageInSwiftProjectDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /YLGIFImageInSwiftProjectDemo/YLGIFImageInSwiftProjectDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImageInSwiftProjectDemo/YLGIFImageInSwiftProjectDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /YLGIFImageInSwiftProjectDemo/YLGIFImageInSwiftProjectDemo/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImageInSwiftProjectDemo/YLGIFImageInSwiftProjectDemo/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /YLGIFImageInSwiftProjectDemo/YLGIFImageInSwiftProjectDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImageInSwiftProjectDemo/YLGIFImageInSwiftProjectDemo/Info.plist -------------------------------------------------------------------------------- /YLGIFImageInSwiftProjectDemo/YLGIFImageInSwiftProjectDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImageInSwiftProjectDemo/YLGIFImageInSwiftProjectDemo/ViewController.swift -------------------------------------------------------------------------------- /YLGIFImageInSwiftProjectDemo/YLGIFImageInSwiftProjectDemo/YLGIFImageInSwiftProjectDemo-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImageInSwiftProjectDemo/YLGIFImageInSwiftProjectDemo/YLGIFImageInSwiftProjectDemo-Bridging-Header.h -------------------------------------------------------------------------------- /YLGIFImageInSwiftProjectDemo/YLGIFImageInSwiftProjectDemo/iwatch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImageInSwiftProjectDemo/YLGIFImageInSwiftProjectDemo/iwatch.gif -------------------------------------------------------------------------------- /YLGIFImageInSwiftProjectDemo/YLGIFImageInSwiftProjectDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImageInSwiftProjectDemo/YLGIFImageInSwiftProjectDemoTests/Info.plist -------------------------------------------------------------------------------- /YLGIFImageInSwiftProjectDemo/YLGIFImageInSwiftProjectDemoTests/YLGIFImageInSwiftProjectDemoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImageInSwiftProjectDemo/YLGIFImageInSwiftProjectDemoTests/YLGIFImageInSwiftProjectDemoTests.swift -------------------------------------------------------------------------------- /YLGIFImageTests/YLGIFImageTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImageTests/YLGIFImageTests-Info.plist -------------------------------------------------------------------------------- /YLGIFImageTests/YLGIFImageTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/YLGIFImageTests/YLGIFImageTests.m -------------------------------------------------------------------------------- /YLGIFImageTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyong03/YLGIFImage/HEAD/screenshot.png --------------------------------------------------------------------------------