gitextract_2t9t0g8x/ ├── .gitignore ├── .swift-version ├── .travis.yml ├── Examples/ │ ├── FlyImageIconView/ │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Info.plist │ │ └── main.m │ ├── 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 │ ├── FlyImageView.xcodeproj/ │ │ └── project.pbxproj │ ├── FlyImageView.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ ├── FlyImageIconView.xcscheme │ │ ├── FlyImageView.xcscheme │ │ ├── SingleView.xcscheme │ │ └── WebP.xcscheme │ ├── Podfile │ ├── SingleView/ │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Info.plist │ │ ├── SingleViewController.h │ │ ├── SingleViewController.m │ │ └── main.m │ └── WebP/ │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Info.plist │ └── main.m ├── 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 ├── FlyImage.podspec ├── FlyImage.xcodeproj/ │ └── project.pbxproj ├── FlyImage.xcworkspace/ │ ├── contents.xcworkspacedata │ └── xcshareddata/ │ └── xcschemes/ │ ├── FlyImage.xcscheme │ └── FlyImageTests.xcscheme ├── FlyImageTests/ │ ├── FlyImageCacheTests.m │ ├── FlyImageDataFileManagerTests.m │ ├── FlyImageDataFileTests.m │ ├── FlyImageDownloadManagerTests.m │ ├── FlyImageIconCacheTests.m │ └── Info.plist ├── LICENSE ├── Podfile └── README.md