├── .gitignore ├── .swift-version ├── .travis.yml ├── Docs ├── classes.jpg ├── iconcache.jpg └── logo.png ├── Examples ├── Default-568h@2x.png ├── FlyImageIconView │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Info.plist │ └── main.m ├── FlyImageView.xcodeproj │ └── project.pbxproj ├── FlyImageView.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── FlyImageIconView.xcscheme │ │ ├── FlyImageView.xcscheme │ │ ├── SingleView.xcscheme │ │ └── WebP.xcscheme ├── FlyImageView │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Cells │ │ ├── BaseTableViewCell.h │ │ ├── BaseTableViewCell.m │ │ ├── FlyImageIconLayerTableViewCell.h │ │ ├── FlyImageIconLayerTableViewCell.m │ │ ├── FlyImageIconViewTableViewCell.h │ │ ├── FlyImageIconViewTableViewCell.m │ │ ├── FlyImageLayerTableViewCell.h │ │ ├── FlyImageLayerTableViewCell.m │ │ ├── FlyImageTableViewCell.h │ │ ├── FlyImageTableViewCell.m │ │ ├── SDWebImageTableViewCell.h │ │ ├── SDWebImageTableViewCell.m │ │ ├── TriditionTableViewCell.h │ │ └── TriditionTableViewCell.m │ ├── Info.plist │ ├── Launch Screen.storyboard │ ├── ProgressImageView.h │ ├── ProgressImageView.m │ ├── RootViewController.h │ ├── RootViewController.m │ └── main.m ├── Podfile ├── SingleView │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Info.plist │ ├── SingleViewController.h │ ├── SingleViewController.m │ └── main.m └── WebP │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Info.plist │ └── main.m ├── FlyImage.podspec ├── FlyImage.xcodeproj └── project.pbxproj ├── FlyImage.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── FlyImage.xcscheme │ └── FlyImageTests.xcscheme ├── FlyImage ├── Core │ ├── FlyImageCache.h │ ├── FlyImageCache.m │ ├── FlyImageCacheProtocol.h │ ├── FlyImageDataFile.h │ ├── FlyImageDataFile.m │ ├── FlyImageDataFileManager.h │ ├── FlyImageDataFileManager.m │ ├── FlyImageDecoder.h │ ├── FlyImageDecoder.m │ ├── FlyImageDownloader.h │ ├── FlyImageDownloader.m │ ├── FlyImageEncoder.h │ ├── FlyImageEncoder.m │ ├── FlyImageIconCache.h │ ├── FlyImageIconCache.m │ ├── FlyImageRetrieveOperation.h │ ├── FlyImageRetrieveOperation.m │ ├── FlyImageUtils.h │ └── FlyImageUtils.m ├── FlyImage.h ├── Info.plist └── UI │ ├── CALayer+FlyImageCache.h │ ├── CALayer+FlyImageCache.m │ ├── CALayer+FlyImageIconCache.h │ ├── CALayer+FlyImageIconCache.m │ ├── FlyImageCacheUIProtocol.h │ ├── FlyImageIconCacheUIProtocol.h │ ├── FlyImageIconRenderer.h │ ├── FlyImageIconRenderer.m │ ├── FlyImageRenderer.h │ ├── FlyImageRenderer.m │ ├── UIImageView+FlyImageCache.h │ ├── UIImageView+FlyImageCache.m │ ├── UIImageView+FlyImageIconCache.h │ └── UIImageView+FlyImageIconCache.m ├── FlyImageTests ├── FlyImageCacheTests.m ├── FlyImageDataFileManagerTests.m ├── FlyImageDataFileTests.m ├── FlyImageDownloadManagerTests.m ├── FlyImageIconCacheTests.m └── Info.plist ├── LICENSE ├── Podfile └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 2.3 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/.travis.yml -------------------------------------------------------------------------------- /Docs/classes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Docs/classes.jpg -------------------------------------------------------------------------------- /Docs/iconcache.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Docs/iconcache.jpg -------------------------------------------------------------------------------- /Docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Docs/logo.png -------------------------------------------------------------------------------- /Examples/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/Default-568h@2x.png -------------------------------------------------------------------------------- /Examples/FlyImageIconView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/FlyImageIconView/AppDelegate.h -------------------------------------------------------------------------------- /Examples/FlyImageIconView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/FlyImageIconView/AppDelegate.m -------------------------------------------------------------------------------- /Examples/FlyImageIconView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/FlyImageIconView/Info.plist -------------------------------------------------------------------------------- /Examples/FlyImageIconView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/FlyImageIconView/main.m -------------------------------------------------------------------------------- /Examples/FlyImageView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/FlyImageView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/FlyImageView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/FlyImageView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/FlyImageView.xcworkspace/xcshareddata/xcschemes/FlyImageIconView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/FlyImageView.xcworkspace/xcshareddata/xcschemes/FlyImageIconView.xcscheme -------------------------------------------------------------------------------- /Examples/FlyImageView.xcworkspace/xcshareddata/xcschemes/FlyImageView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/FlyImageView.xcworkspace/xcshareddata/xcschemes/FlyImageView.xcscheme -------------------------------------------------------------------------------- /Examples/FlyImageView.xcworkspace/xcshareddata/xcschemes/SingleView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/FlyImageView.xcworkspace/xcshareddata/xcschemes/SingleView.xcscheme -------------------------------------------------------------------------------- /Examples/FlyImageView.xcworkspace/xcshareddata/xcschemes/WebP.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/FlyImageView.xcworkspace/xcshareddata/xcschemes/WebP.xcscheme -------------------------------------------------------------------------------- /Examples/FlyImageView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/FlyImageView/AppDelegate.h -------------------------------------------------------------------------------- /Examples/FlyImageView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/FlyImageView/AppDelegate.m -------------------------------------------------------------------------------- /Examples/FlyImageView/Cells/BaseTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/FlyImageView/Cells/BaseTableViewCell.h -------------------------------------------------------------------------------- /Examples/FlyImageView/Cells/BaseTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/FlyImageView/Cells/BaseTableViewCell.m -------------------------------------------------------------------------------- /Examples/FlyImageView/Cells/FlyImageIconLayerTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/FlyImageView/Cells/FlyImageIconLayerTableViewCell.h -------------------------------------------------------------------------------- /Examples/FlyImageView/Cells/FlyImageIconLayerTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/FlyImageView/Cells/FlyImageIconLayerTableViewCell.m -------------------------------------------------------------------------------- /Examples/FlyImageView/Cells/FlyImageIconViewTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/FlyImageView/Cells/FlyImageIconViewTableViewCell.h -------------------------------------------------------------------------------- /Examples/FlyImageView/Cells/FlyImageIconViewTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/FlyImageView/Cells/FlyImageIconViewTableViewCell.m -------------------------------------------------------------------------------- /Examples/FlyImageView/Cells/FlyImageLayerTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/FlyImageView/Cells/FlyImageLayerTableViewCell.h -------------------------------------------------------------------------------- /Examples/FlyImageView/Cells/FlyImageLayerTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/FlyImageView/Cells/FlyImageLayerTableViewCell.m -------------------------------------------------------------------------------- /Examples/FlyImageView/Cells/FlyImageTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/FlyImageView/Cells/FlyImageTableViewCell.h -------------------------------------------------------------------------------- /Examples/FlyImageView/Cells/FlyImageTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/FlyImageView/Cells/FlyImageTableViewCell.m -------------------------------------------------------------------------------- /Examples/FlyImageView/Cells/SDWebImageTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/FlyImageView/Cells/SDWebImageTableViewCell.h -------------------------------------------------------------------------------- /Examples/FlyImageView/Cells/SDWebImageTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/FlyImageView/Cells/SDWebImageTableViewCell.m -------------------------------------------------------------------------------- /Examples/FlyImageView/Cells/TriditionTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/FlyImageView/Cells/TriditionTableViewCell.h -------------------------------------------------------------------------------- /Examples/FlyImageView/Cells/TriditionTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/FlyImageView/Cells/TriditionTableViewCell.m -------------------------------------------------------------------------------- /Examples/FlyImageView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/FlyImageView/Info.plist -------------------------------------------------------------------------------- /Examples/FlyImageView/Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/FlyImageView/Launch Screen.storyboard -------------------------------------------------------------------------------- /Examples/FlyImageView/ProgressImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/FlyImageView/ProgressImageView.h -------------------------------------------------------------------------------- /Examples/FlyImageView/ProgressImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/FlyImageView/ProgressImageView.m -------------------------------------------------------------------------------- /Examples/FlyImageView/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/FlyImageView/RootViewController.h -------------------------------------------------------------------------------- /Examples/FlyImageView/RootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/FlyImageView/RootViewController.m -------------------------------------------------------------------------------- /Examples/FlyImageView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/FlyImageView/main.m -------------------------------------------------------------------------------- /Examples/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/Podfile -------------------------------------------------------------------------------- /Examples/SingleView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/SingleView/AppDelegate.h -------------------------------------------------------------------------------- /Examples/SingleView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/SingleView/AppDelegate.m -------------------------------------------------------------------------------- /Examples/SingleView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/SingleView/Info.plist -------------------------------------------------------------------------------- /Examples/SingleView/SingleViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/SingleView/SingleViewController.h -------------------------------------------------------------------------------- /Examples/SingleView/SingleViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/SingleView/SingleViewController.m -------------------------------------------------------------------------------- /Examples/SingleView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/SingleView/main.m -------------------------------------------------------------------------------- /Examples/WebP/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/WebP/AppDelegate.h -------------------------------------------------------------------------------- /Examples/WebP/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/WebP/AppDelegate.m -------------------------------------------------------------------------------- /Examples/WebP/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/WebP/Info.plist -------------------------------------------------------------------------------- /Examples/WebP/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Examples/WebP/main.m -------------------------------------------------------------------------------- /FlyImage.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage.podspec -------------------------------------------------------------------------------- /FlyImage.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FlyImage.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FlyImage.xcworkspace/xcshareddata/xcschemes/FlyImage.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage.xcworkspace/xcshareddata/xcschemes/FlyImage.xcscheme -------------------------------------------------------------------------------- /FlyImage.xcworkspace/xcshareddata/xcschemes/FlyImageTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage.xcworkspace/xcshareddata/xcschemes/FlyImageTests.xcscheme -------------------------------------------------------------------------------- /FlyImage/Core/FlyImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/Core/FlyImageCache.h -------------------------------------------------------------------------------- /FlyImage/Core/FlyImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/Core/FlyImageCache.m -------------------------------------------------------------------------------- /FlyImage/Core/FlyImageCacheProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/Core/FlyImageCacheProtocol.h -------------------------------------------------------------------------------- /FlyImage/Core/FlyImageDataFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/Core/FlyImageDataFile.h -------------------------------------------------------------------------------- /FlyImage/Core/FlyImageDataFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/Core/FlyImageDataFile.m -------------------------------------------------------------------------------- /FlyImage/Core/FlyImageDataFileManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/Core/FlyImageDataFileManager.h -------------------------------------------------------------------------------- /FlyImage/Core/FlyImageDataFileManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/Core/FlyImageDataFileManager.m -------------------------------------------------------------------------------- /FlyImage/Core/FlyImageDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/Core/FlyImageDecoder.h -------------------------------------------------------------------------------- /FlyImage/Core/FlyImageDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/Core/FlyImageDecoder.m -------------------------------------------------------------------------------- /FlyImage/Core/FlyImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/Core/FlyImageDownloader.h -------------------------------------------------------------------------------- /FlyImage/Core/FlyImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/Core/FlyImageDownloader.m -------------------------------------------------------------------------------- /FlyImage/Core/FlyImageEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/Core/FlyImageEncoder.h -------------------------------------------------------------------------------- /FlyImage/Core/FlyImageEncoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/Core/FlyImageEncoder.m -------------------------------------------------------------------------------- /FlyImage/Core/FlyImageIconCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/Core/FlyImageIconCache.h -------------------------------------------------------------------------------- /FlyImage/Core/FlyImageIconCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/Core/FlyImageIconCache.m -------------------------------------------------------------------------------- /FlyImage/Core/FlyImageRetrieveOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/Core/FlyImageRetrieveOperation.h -------------------------------------------------------------------------------- /FlyImage/Core/FlyImageRetrieveOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/Core/FlyImageRetrieveOperation.m -------------------------------------------------------------------------------- /FlyImage/Core/FlyImageUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/Core/FlyImageUtils.h -------------------------------------------------------------------------------- /FlyImage/Core/FlyImageUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/Core/FlyImageUtils.m -------------------------------------------------------------------------------- /FlyImage/FlyImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/FlyImage.h -------------------------------------------------------------------------------- /FlyImage/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/Info.plist -------------------------------------------------------------------------------- /FlyImage/UI/CALayer+FlyImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/UI/CALayer+FlyImageCache.h -------------------------------------------------------------------------------- /FlyImage/UI/CALayer+FlyImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/UI/CALayer+FlyImageCache.m -------------------------------------------------------------------------------- /FlyImage/UI/CALayer+FlyImageIconCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/UI/CALayer+FlyImageIconCache.h -------------------------------------------------------------------------------- /FlyImage/UI/CALayer+FlyImageIconCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/UI/CALayer+FlyImageIconCache.m -------------------------------------------------------------------------------- /FlyImage/UI/FlyImageCacheUIProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/UI/FlyImageCacheUIProtocol.h -------------------------------------------------------------------------------- /FlyImage/UI/FlyImageIconCacheUIProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/UI/FlyImageIconCacheUIProtocol.h -------------------------------------------------------------------------------- /FlyImage/UI/FlyImageIconRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/UI/FlyImageIconRenderer.h -------------------------------------------------------------------------------- /FlyImage/UI/FlyImageIconRenderer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/UI/FlyImageIconRenderer.m -------------------------------------------------------------------------------- /FlyImage/UI/FlyImageRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/UI/FlyImageRenderer.h -------------------------------------------------------------------------------- /FlyImage/UI/FlyImageRenderer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/UI/FlyImageRenderer.m -------------------------------------------------------------------------------- /FlyImage/UI/UIImageView+FlyImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/UI/UIImageView+FlyImageCache.h -------------------------------------------------------------------------------- /FlyImage/UI/UIImageView+FlyImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/UI/UIImageView+FlyImageCache.m -------------------------------------------------------------------------------- /FlyImage/UI/UIImageView+FlyImageIconCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/UI/UIImageView+FlyImageIconCache.h -------------------------------------------------------------------------------- /FlyImage/UI/UIImageView+FlyImageIconCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImage/UI/UIImageView+FlyImageIconCache.m -------------------------------------------------------------------------------- /FlyImageTests/FlyImageCacheTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImageTests/FlyImageCacheTests.m -------------------------------------------------------------------------------- /FlyImageTests/FlyImageDataFileManagerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImageTests/FlyImageDataFileManagerTests.m -------------------------------------------------------------------------------- /FlyImageTests/FlyImageDataFileTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImageTests/FlyImageDataFileTests.m -------------------------------------------------------------------------------- /FlyImageTests/FlyImageDownloadManagerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImageTests/FlyImageDownloadManagerTests.m -------------------------------------------------------------------------------- /FlyImageTests/FlyImageIconCacheTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImageTests/FlyImageIconCacheTests.m -------------------------------------------------------------------------------- /FlyImageTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/FlyImageTests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/Podfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwind/FlyImage/HEAD/README.md --------------------------------------------------------------------------------