├── .DS_Store ├── .gitignore ├── AKMatrixImage.podspec ├── AKMatrixImage ├── .DS_Store ├── AKMatrixImage.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── AKMatrixImage.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── AKMatrixImage │ ├── .DS_Store │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── MatrixImageView │ │ ├── AKMatrixImageView.h │ │ └── AKMatrixImageView.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── Podfile ├── Podfile.lock └── Pods │ ├── FLAnimatedImage │ ├── FLAnimatedImage │ │ ├── FLAnimatedImage.h │ │ ├── FLAnimatedImage.m │ │ ├── FLAnimatedImageView.h │ │ └── FLAnimatedImageView.m │ ├── LICENSE │ └── README.md │ ├── Headers │ ├── Private │ │ ├── FLAnimatedImage │ │ │ ├── FLAnimatedImage.h │ │ │ └── FLAnimatedImageView.h │ │ └── SDWebImage │ │ │ ├── FLAnimatedImageView+WebCache.h │ │ │ ├── NSButton+WebCache.h │ │ │ ├── NSData+ImageContentType.h │ │ │ ├── NSImage+WebCache.h │ │ │ ├── SDAnimatedImageRep.h │ │ │ ├── SDImageCache.h │ │ │ ├── SDImageCacheConfig.h │ │ │ ├── SDWebImageCoder.h │ │ │ ├── SDWebImageCoderHelper.h │ │ │ ├── SDWebImageCodersManager.h │ │ │ ├── SDWebImageCompat.h │ │ │ ├── SDWebImageDownloader.h │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ ├── SDWebImageFrame.h │ │ │ ├── SDWebImageGIFCoder.h │ │ │ ├── SDWebImageImageIOCoder.h │ │ │ ├── SDWebImageManager.h │ │ │ ├── SDWebImageOperation.h │ │ │ ├── SDWebImagePrefetcher.h │ │ │ ├── SDWebImageTransition.h │ │ │ ├── UIButton+WebCache.h │ │ │ ├── UIImage+ForceDecode.h │ │ │ ├── UIImage+GIF.h │ │ │ ├── UIImage+MultiFormat.h │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ ├── UIImageView+WebCache.h │ │ │ ├── UIView+WebCache.h │ │ │ └── UIView+WebCacheOperation.h │ └── Public │ │ ├── FLAnimatedImage │ │ ├── FLAnimatedImage.h │ │ └── FLAnimatedImageView.h │ │ └── SDWebImage │ │ ├── FLAnimatedImageView+WebCache.h │ │ ├── NSButton+WebCache.h │ │ ├── NSData+ImageContentType.h │ │ ├── NSImage+WebCache.h │ │ ├── SDAnimatedImageRep.h │ │ ├── SDImageCache.h │ │ ├── SDImageCacheConfig.h │ │ ├── SDWebImageCoder.h │ │ ├── SDWebImageCoderHelper.h │ │ ├── SDWebImageCodersManager.h │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageFrame.h │ │ ├── SDWebImageGIFCoder.h │ │ ├── SDWebImageImageIOCoder.h │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── SDWebImageTransition.h │ │ ├── UIButton+WebCache.h │ │ ├── UIImage+ForceDecode.h │ │ ├── UIImage+GIF.h │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+WebCache.h │ │ ├── UIView+WebCache.h │ │ └── UIView+WebCacheOperation.h │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ ├── SDWebImage │ ├── LICENSE │ ├── README.md │ └── SDWebImage │ │ ├── FLAnimatedImage │ │ ├── FLAnimatedImageView+WebCache.h │ │ └── FLAnimatedImageView+WebCache.m │ │ ├── NSButton+WebCache.h │ │ ├── NSButton+WebCache.m │ │ ├── NSData+ImageContentType.h │ │ ├── NSData+ImageContentType.m │ │ ├── NSImage+WebCache.h │ │ ├── NSImage+WebCache.m │ │ ├── SDAnimatedImageRep.h │ │ ├── SDAnimatedImageRep.m │ │ ├── SDImageCache.h │ │ ├── SDImageCache.m │ │ ├── SDImageCacheConfig.h │ │ ├── SDImageCacheConfig.m │ │ ├── SDWebImageCoder.h │ │ ├── SDWebImageCoder.m │ │ ├── SDWebImageCoderHelper.h │ │ ├── SDWebImageCoderHelper.m │ │ ├── SDWebImageCodersManager.h │ │ ├── SDWebImageCodersManager.m │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageCompat.m │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloader.m │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageDownloaderOperation.m │ │ ├── SDWebImageFrame.h │ │ ├── SDWebImageFrame.m │ │ ├── SDWebImageGIFCoder.h │ │ ├── SDWebImageGIFCoder.m │ │ ├── SDWebImageImageIOCoder.h │ │ ├── SDWebImageImageIOCoder.m │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageManager.m │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── SDWebImagePrefetcher.m │ │ ├── SDWebImageTransition.h │ │ ├── SDWebImageTransition.m │ │ ├── UIButton+WebCache.h │ │ ├── UIButton+WebCache.m │ │ ├── UIImage+ForceDecode.h │ │ ├── UIImage+ForceDecode.m │ │ ├── UIImage+GIF.h │ │ ├── UIImage+GIF.m │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImage+MultiFormat.m │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+HighlightedWebCache.m │ │ ├── UIImageView+WebCache.h │ │ ├── UIImageView+WebCache.m │ │ ├── UIView+WebCache.h │ │ ├── UIView+WebCache.m │ │ ├── UIView+WebCacheOperation.h │ │ └── UIView+WebCacheOperation.m │ └── Target Support Files │ ├── FLAnimatedImage │ ├── FLAnimatedImage-dummy.m │ ├── FLAnimatedImage-prefix.pch │ └── FLAnimatedImage.xcconfig │ ├── Pods-AKMatrixImage │ ├── Pods-AKMatrixImage-acknowledgements.markdown │ ├── Pods-AKMatrixImage-acknowledgements.plist │ ├── Pods-AKMatrixImage-dummy.m │ ├── Pods-AKMatrixImage-frameworks.sh │ ├── Pods-AKMatrixImage-resources.sh │ ├── Pods-AKMatrixImage.debug.xcconfig │ └── Pods-AKMatrixImage.release.xcconfig │ └── SDWebImage │ ├── SDWebImage-dummy.m │ ├── SDWebImage-prefix.pch │ └── SDWebImage.xcconfig ├── LICENSE └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/.gitignore -------------------------------------------------------------------------------- /AKMatrixImage.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage.podspec -------------------------------------------------------------------------------- /AKMatrixImage/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/.DS_Store -------------------------------------------------------------------------------- /AKMatrixImage/AKMatrixImage.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/AKMatrixImage.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AKMatrixImage/AKMatrixImage.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/AKMatrixImage.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AKMatrixImage/AKMatrixImage.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/AKMatrixImage.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /AKMatrixImage/AKMatrixImage.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/AKMatrixImage.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AKMatrixImage/AKMatrixImage.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/AKMatrixImage.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /AKMatrixImage/AKMatrixImage/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/AKMatrixImage/.DS_Store -------------------------------------------------------------------------------- /AKMatrixImage/AKMatrixImage/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/AKMatrixImage/AppDelegate.h -------------------------------------------------------------------------------- /AKMatrixImage/AKMatrixImage/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/AKMatrixImage/AppDelegate.m -------------------------------------------------------------------------------- /AKMatrixImage/AKMatrixImage/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/AKMatrixImage/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AKMatrixImage/AKMatrixImage/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/AKMatrixImage/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /AKMatrixImage/AKMatrixImage/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/AKMatrixImage/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /AKMatrixImage/AKMatrixImage/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/AKMatrixImage/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /AKMatrixImage/AKMatrixImage/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/AKMatrixImage/Info.plist -------------------------------------------------------------------------------- /AKMatrixImage/AKMatrixImage/MatrixImageView/AKMatrixImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/AKMatrixImage/MatrixImageView/AKMatrixImageView.h -------------------------------------------------------------------------------- /AKMatrixImage/AKMatrixImage/MatrixImageView/AKMatrixImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/AKMatrixImage/MatrixImageView/AKMatrixImageView.m -------------------------------------------------------------------------------- /AKMatrixImage/AKMatrixImage/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/AKMatrixImage/ViewController.h -------------------------------------------------------------------------------- /AKMatrixImage/AKMatrixImage/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/AKMatrixImage/ViewController.m -------------------------------------------------------------------------------- /AKMatrixImage/AKMatrixImage/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/AKMatrixImage/main.m -------------------------------------------------------------------------------- /AKMatrixImage/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Podfile -------------------------------------------------------------------------------- /AKMatrixImage/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Podfile.lock -------------------------------------------------------------------------------- /AKMatrixImage/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImage.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImage.m -------------------------------------------------------------------------------- /AKMatrixImage/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImageView.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImageView.m -------------------------------------------------------------------------------- /AKMatrixImage/Pods/FLAnimatedImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/FLAnimatedImage/LICENSE -------------------------------------------------------------------------------- /AKMatrixImage/Pods/FLAnimatedImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/FLAnimatedImage/README.md -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Private/FLAnimatedImage/FLAnimatedImage.h: -------------------------------------------------------------------------------- 1 | ../../../FLAnimatedImage/FLAnimatedImage/FLAnimatedImage.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Private/FLAnimatedImage/FLAnimatedImageView.h: -------------------------------------------------------------------------------- 1 | ../../../FLAnimatedImage/FLAnimatedImage/FLAnimatedImageView.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Private/SDWebImage/FLAnimatedImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/FLAnimatedImage/FLAnimatedImageView+WebCache.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Private/SDWebImage/NSButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSButton+WebCache.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Private/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Private/SDWebImage/NSImage+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSImage+WebCache.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Private/SDWebImage/SDAnimatedImageRep.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDAnimatedImageRep.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Private/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Private/SDWebImage/SDImageCacheConfig.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCacheConfig.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Private/SDWebImage/SDWebImageCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCoder.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Private/SDWebImage/SDWebImageCoderHelper.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCoderHelper.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Private/SDWebImage/SDWebImageCodersManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCodersManager.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Private/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Private/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Private/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Private/SDWebImage/SDWebImageFrame.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageFrame.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Private/SDWebImage/SDWebImageGIFCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageGIFCoder.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Private/SDWebImage/SDWebImageImageIOCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageImageIOCoder.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Private/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Private/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Private/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Private/SDWebImage/SDWebImageTransition.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageTransition.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Private/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Private/SDWebImage/UIImage+ForceDecode.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+ForceDecode.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Private/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Private/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Private/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Private/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Private/SDWebImage/UIView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCache.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Private/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Public/FLAnimatedImage/FLAnimatedImage.h: -------------------------------------------------------------------------------- 1 | ../../../FLAnimatedImage/FLAnimatedImage/FLAnimatedImage.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Public/FLAnimatedImage/FLAnimatedImageView.h: -------------------------------------------------------------------------------- 1 | ../../../FLAnimatedImage/FLAnimatedImage/FLAnimatedImageView.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Public/SDWebImage/FLAnimatedImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/FLAnimatedImage/FLAnimatedImageView+WebCache.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Public/SDWebImage/NSButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSButton+WebCache.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Public/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Public/SDWebImage/NSImage+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSImage+WebCache.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Public/SDWebImage/SDAnimatedImageRep.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDAnimatedImageRep.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Public/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Public/SDWebImage/SDImageCacheConfig.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCacheConfig.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Public/SDWebImage/SDWebImageCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCoder.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Public/SDWebImage/SDWebImageCoderHelper.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCoderHelper.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Public/SDWebImage/SDWebImageCodersManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCodersManager.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Public/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Public/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Public/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Public/SDWebImage/SDWebImageFrame.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageFrame.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Public/SDWebImage/SDWebImageGIFCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageGIFCoder.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Public/SDWebImage/SDWebImageImageIOCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageImageIOCoder.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Public/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Public/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Public/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Public/SDWebImage/SDWebImageTransition.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageTransition.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Public/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Public/SDWebImage/UIImage+ForceDecode.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+ForceDecode.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Public/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Public/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Public/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Public/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Public/SDWebImage/UIView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCache.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Headers/Public/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/Manifest.lock -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/LICENSE -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/README.md -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/FLAnimatedImage/FLAnimatedImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/FLAnimatedImage/FLAnimatedImageView+WebCache.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/FLAnimatedImage/FLAnimatedImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/FLAnimatedImage/FLAnimatedImageView+WebCache.m -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/NSButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/NSButton+WebCache.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/NSButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/NSButton+WebCache.m -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.m -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/NSImage+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/NSImage+WebCache.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/NSImage+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/NSImage+WebCache.m -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/SDAnimatedImageRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/SDAnimatedImageRep.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/SDAnimatedImageRep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/SDAnimatedImageRep.m -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/SDImageCache.m -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/SDImageCacheConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/SDImageCacheConfig.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/SDImageCacheConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/SDImageCacheConfig.m -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageCoder.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageCoder.m -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageCoderHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageCoderHelper.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageCoderHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageCoderHelper.m -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageCodersManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageCodersManager.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageCodersManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageCodersManager.m -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageCompat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageCompat.m -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.m -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.m -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageFrame.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageFrame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageFrame.m -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageGIFCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageGIFCoder.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageGIFCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageGIFCoder.m -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageImageIOCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageImageIOCoder.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageImageIOCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageImageIOCoder.m -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageManager.m -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.m -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageTransition.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageTransition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/SDWebImageTransition.m -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/UIButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/UIButton+WebCache.m -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/UIImage+ForceDecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/UIImage+ForceDecode.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/UIImage+ForceDecode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/UIImage+ForceDecode.m -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/UIImage+GIF.m -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.m -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.m -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/UIView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/UIView+WebCache.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/UIView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/UIView+WebCache.m -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /AKMatrixImage/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.m -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage-dummy.m -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage-prefix.pch -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage.xcconfig -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Target Support Files/Pods-AKMatrixImage/Pods-AKMatrixImage-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/Target Support Files/Pods-AKMatrixImage/Pods-AKMatrixImage-acknowledgements.markdown -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Target Support Files/Pods-AKMatrixImage/Pods-AKMatrixImage-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/Target Support Files/Pods-AKMatrixImage/Pods-AKMatrixImage-acknowledgements.plist -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Target Support Files/Pods-AKMatrixImage/Pods-AKMatrixImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/Target Support Files/Pods-AKMatrixImage/Pods-AKMatrixImage-dummy.m -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Target Support Files/Pods-AKMatrixImage/Pods-AKMatrixImage-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/Target Support Files/Pods-AKMatrixImage/Pods-AKMatrixImage-frameworks.sh -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Target Support Files/Pods-AKMatrixImage/Pods-AKMatrixImage-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/Target Support Files/Pods-AKMatrixImage/Pods-AKMatrixImage-resources.sh -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Target Support Files/Pods-AKMatrixImage/Pods-AKMatrixImage.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/Target Support Files/Pods-AKMatrixImage/Pods-AKMatrixImage.debug.xcconfig -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Target Support Files/Pods-AKMatrixImage/Pods-AKMatrixImage.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/Target Support Files/Pods-AKMatrixImage/Pods-AKMatrixImage.release.xcconfig -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch -------------------------------------------------------------------------------- /AKMatrixImage/Pods/Target Support Files/SDWebImage/SDWebImage.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/AKMatrixImage/Pods/Target Support Files/SDWebImage/SDWebImage.xcconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZuoCaiSong/AKMatrixImage/HEAD/README.md --------------------------------------------------------------------------------