├── .gitignore ├── .gitmodules ├── AFImageDownloader.h ├── AFImageDownloader.m ├── AFImageDownloader.podspec ├── AFImageDownloader.xcworkspace ├── contents.xcworkspacedata └── xcuserdata │ └── ash.xcuserdatad │ └── UserInterfaceState.xcuserstate ├── AFImageDownloader ├── AFImageDownloader.xcodeproj │ └── project.pbxproj ├── AFImageDownloader │ ├── AFAppDelegate.h │ ├── AFAppDelegate.m │ ├── AFImageDownloader-Info.plist │ ├── AFImageDownloader-Prefix.pch │ ├── AFViewController.h │ ├── AFViewController.m │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── en.lproj │ │ ├── AFViewController.xib │ │ └── InfoPlist.strings │ └── main.m └── AFImageDownloaderTests │ ├── AFImageDownloaderCancellationTests.m │ ├── AFImageDownloaderConnectionDelegateTests.m │ ├── AFImageDownloaderInitializationTests.m │ ├── AFImageDownloaderStartingTests.m │ ├── AFImageDownloaderStateChangeTests.m │ ├── AFImageDownloaderTests-Info.plist │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── NSData+AFDecompression.h ├── NSData+AFDecompression.m └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFImageDownloader/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFImageDownloader/HEAD/.gitmodules -------------------------------------------------------------------------------- /AFImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFImageDownloader/HEAD/AFImageDownloader.h -------------------------------------------------------------------------------- /AFImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFImageDownloader/HEAD/AFImageDownloader.m -------------------------------------------------------------------------------- /AFImageDownloader.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFImageDownloader/HEAD/AFImageDownloader.podspec -------------------------------------------------------------------------------- /AFImageDownloader.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFImageDownloader/HEAD/AFImageDownloader.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AFImageDownloader.xcworkspace/xcuserdata/ash.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFImageDownloader/HEAD/AFImageDownloader.xcworkspace/xcuserdata/ash.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /AFImageDownloader/AFImageDownloader.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFImageDownloader/HEAD/AFImageDownloader/AFImageDownloader.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AFImageDownloader/AFImageDownloader/AFAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFImageDownloader/HEAD/AFImageDownloader/AFImageDownloader/AFAppDelegate.h -------------------------------------------------------------------------------- /AFImageDownloader/AFImageDownloader/AFAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFImageDownloader/HEAD/AFImageDownloader/AFImageDownloader/AFAppDelegate.m -------------------------------------------------------------------------------- /AFImageDownloader/AFImageDownloader/AFImageDownloader-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFImageDownloader/HEAD/AFImageDownloader/AFImageDownloader/AFImageDownloader-Info.plist -------------------------------------------------------------------------------- /AFImageDownloader/AFImageDownloader/AFImageDownloader-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFImageDownloader/HEAD/AFImageDownloader/AFImageDownloader/AFImageDownloader-Prefix.pch -------------------------------------------------------------------------------- /AFImageDownloader/AFImageDownloader/AFViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFImageDownloader/HEAD/AFImageDownloader/AFImageDownloader/AFViewController.h -------------------------------------------------------------------------------- /AFImageDownloader/AFImageDownloader/AFViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFImageDownloader/HEAD/AFImageDownloader/AFImageDownloader/AFViewController.m -------------------------------------------------------------------------------- /AFImageDownloader/AFImageDownloader/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFImageDownloader/HEAD/AFImageDownloader/AFImageDownloader/Default-568h@2x.png -------------------------------------------------------------------------------- /AFImageDownloader/AFImageDownloader/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFImageDownloader/HEAD/AFImageDownloader/AFImageDownloader/Default.png -------------------------------------------------------------------------------- /AFImageDownloader/AFImageDownloader/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFImageDownloader/HEAD/AFImageDownloader/AFImageDownloader/Default@2x.png -------------------------------------------------------------------------------- /AFImageDownloader/AFImageDownloader/en.lproj/AFViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFImageDownloader/HEAD/AFImageDownloader/AFImageDownloader/en.lproj/AFViewController.xib -------------------------------------------------------------------------------- /AFImageDownloader/AFImageDownloader/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /AFImageDownloader/AFImageDownloader/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFImageDownloader/HEAD/AFImageDownloader/AFImageDownloader/main.m -------------------------------------------------------------------------------- /AFImageDownloader/AFImageDownloaderTests/AFImageDownloaderCancellationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFImageDownloader/HEAD/AFImageDownloader/AFImageDownloaderTests/AFImageDownloaderCancellationTests.m -------------------------------------------------------------------------------- /AFImageDownloader/AFImageDownloaderTests/AFImageDownloaderConnectionDelegateTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFImageDownloader/HEAD/AFImageDownloader/AFImageDownloaderTests/AFImageDownloaderConnectionDelegateTests.m -------------------------------------------------------------------------------- /AFImageDownloader/AFImageDownloaderTests/AFImageDownloaderInitializationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFImageDownloader/HEAD/AFImageDownloader/AFImageDownloaderTests/AFImageDownloaderInitializationTests.m -------------------------------------------------------------------------------- /AFImageDownloader/AFImageDownloaderTests/AFImageDownloaderStartingTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFImageDownloader/HEAD/AFImageDownloader/AFImageDownloaderTests/AFImageDownloaderStartingTests.m -------------------------------------------------------------------------------- /AFImageDownloader/AFImageDownloaderTests/AFImageDownloaderStateChangeTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFImageDownloader/HEAD/AFImageDownloader/AFImageDownloaderTests/AFImageDownloaderStateChangeTests.m -------------------------------------------------------------------------------- /AFImageDownloader/AFImageDownloaderTests/AFImageDownloaderTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFImageDownloader/HEAD/AFImageDownloader/AFImageDownloaderTests/AFImageDownloaderTests-Info.plist -------------------------------------------------------------------------------- /AFImageDownloader/AFImageDownloaderTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFImageDownloader/HEAD/LICENSE -------------------------------------------------------------------------------- /NSData+AFDecompression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFImageDownloader/HEAD/NSData+AFDecompression.h -------------------------------------------------------------------------------- /NSData+AFDecompression.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFImageDownloader/HEAD/NSData+AFDecompression.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFImageDownloader/HEAD/README.md --------------------------------------------------------------------------------