├── .gitignore ├── .travis.yml ├── IGFastImage.podspec ├── IGFastImage.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── IGFastImage.xcscheme ├── IGFastImage.xcworkspace └── contents.xcworkspacedata ├── IGFastImage ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── FastImage │ ├── IGFastImage.h │ ├── IGFastImage.m │ ├── IGFastImageHelper.h │ ├── IGFastImageHelper.m │ ├── IGFastImageRequestOperation.h │ └── IGFastImageRequestOperation.m ├── IGAppDelegate.h ├── IGAppDelegate.m ├── IGFastImage-Info.plist ├── IGFastImage-Prefix.pch ├── en.lproj │ └── InfoPlist.strings └── main.m ├── IGFastImageTests ├── IGFastImageHelperSpec.m ├── IGFastImageSpec.m ├── IGSpecHelper.h ├── IGSpecHelper.m ├── Info.plist └── fixtures │ ├── faulty.jpg │ ├── test.bmp │ ├── test.gif │ ├── test.ico │ ├── test.jpg │ ├── test.png │ ├── test2.jpg │ ├── test2.png │ ├── test3.jpg │ └── test4.jpg ├── LICENSE ├── Podfile ├── Podfile.lock └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/.travis.yml -------------------------------------------------------------------------------- /IGFastImage.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/IGFastImage.podspec -------------------------------------------------------------------------------- /IGFastImage.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/IGFastImage.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /IGFastImage.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/IGFastImage.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /IGFastImage.xcodeproj/xcshareddata/xcschemes/IGFastImage.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/IGFastImage.xcodeproj/xcshareddata/xcschemes/IGFastImage.xcscheme -------------------------------------------------------------------------------- /IGFastImage.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/IGFastImage.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /IGFastImage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/IGFastImage/Default-568h@2x.png -------------------------------------------------------------------------------- /IGFastImage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/IGFastImage/Default.png -------------------------------------------------------------------------------- /IGFastImage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/IGFastImage/Default@2x.png -------------------------------------------------------------------------------- /IGFastImage/FastImage/IGFastImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/IGFastImage/FastImage/IGFastImage.h -------------------------------------------------------------------------------- /IGFastImage/FastImage/IGFastImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/IGFastImage/FastImage/IGFastImage.m -------------------------------------------------------------------------------- /IGFastImage/FastImage/IGFastImageHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/IGFastImage/FastImage/IGFastImageHelper.h -------------------------------------------------------------------------------- /IGFastImage/FastImage/IGFastImageHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/IGFastImage/FastImage/IGFastImageHelper.m -------------------------------------------------------------------------------- /IGFastImage/FastImage/IGFastImageRequestOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/IGFastImage/FastImage/IGFastImageRequestOperation.h -------------------------------------------------------------------------------- /IGFastImage/FastImage/IGFastImageRequestOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/IGFastImage/FastImage/IGFastImageRequestOperation.m -------------------------------------------------------------------------------- /IGFastImage/IGAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/IGFastImage/IGAppDelegate.h -------------------------------------------------------------------------------- /IGFastImage/IGAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/IGFastImage/IGAppDelegate.m -------------------------------------------------------------------------------- /IGFastImage/IGFastImage-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/IGFastImage/IGFastImage-Info.plist -------------------------------------------------------------------------------- /IGFastImage/IGFastImage-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/IGFastImage/IGFastImage-Prefix.pch -------------------------------------------------------------------------------- /IGFastImage/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /IGFastImage/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/IGFastImage/main.m -------------------------------------------------------------------------------- /IGFastImageTests/IGFastImageHelperSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/IGFastImageTests/IGFastImageHelperSpec.m -------------------------------------------------------------------------------- /IGFastImageTests/IGFastImageSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/IGFastImageTests/IGFastImageSpec.m -------------------------------------------------------------------------------- /IGFastImageTests/IGSpecHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/IGFastImageTests/IGSpecHelper.h -------------------------------------------------------------------------------- /IGFastImageTests/IGSpecHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/IGFastImageTests/IGSpecHelper.m -------------------------------------------------------------------------------- /IGFastImageTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/IGFastImageTests/Info.plist -------------------------------------------------------------------------------- /IGFastImageTests/fixtures/faulty.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/IGFastImageTests/fixtures/faulty.jpg -------------------------------------------------------------------------------- /IGFastImageTests/fixtures/test.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/IGFastImageTests/fixtures/test.bmp -------------------------------------------------------------------------------- /IGFastImageTests/fixtures/test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/IGFastImageTests/fixtures/test.gif -------------------------------------------------------------------------------- /IGFastImageTests/fixtures/test.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/IGFastImageTests/fixtures/test.ico -------------------------------------------------------------------------------- /IGFastImageTests/fixtures/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/IGFastImageTests/fixtures/test.jpg -------------------------------------------------------------------------------- /IGFastImageTests/fixtures/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/IGFastImageTests/fixtures/test.png -------------------------------------------------------------------------------- /IGFastImageTests/fixtures/test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/IGFastImageTests/fixtures/test2.jpg -------------------------------------------------------------------------------- /IGFastImageTests/fixtures/test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/IGFastImageTests/fixtures/test2.png -------------------------------------------------------------------------------- /IGFastImageTests/fixtures/test3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/IGFastImageTests/fixtures/test3.jpg -------------------------------------------------------------------------------- /IGFastImageTests/fixtures/test4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/IGFastImageTests/fixtures/test4.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siuying/IGFastImage/HEAD/README.md --------------------------------------------------------------------------------