├── Examples ├── CustomPathImages │ └── 4ad9ae8eabfec60b40bf48f0bfc2d120 ├── Default-568h@2x.png ├── SDWebImage Demo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ ├── linyunfeng.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── ljh.xcuserdatad │ │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── linyunfeng.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ ├── SDWebImage Demo.xcscheme │ │ └── xcschememanagement.plist └── SDWebImage Demo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── DetailViewController.h │ ├── DetailViewController.m │ ├── MasterViewController.h │ ├── MasterViewController.m │ ├── SDWebImage Demo-Info.plist │ ├── SDWebImage Demo-Prefix.pch │ ├── en.lproj │ ├── DetailViewController.xib │ └── MasterViewController.xib │ ├── main.m │ ├── placeholder.png │ └── placeholder@2x.png ├── LICENSE ├── README.md ├── SDWebImage-Category.podspec.json ├── SDWebImage-Category ├── Resource │ ├── lk_click_image.png │ ├── lk_click_image@2x.png │ ├── lk_click_image@3x.png │ ├── lk_noimage.png │ └── lk_noimage@2x.png ├── THProgressView │ ├── LK_THProgressView.h │ └── LK_THProgressView.m ├── UIImageView+LK.h └── UIImageView+LK.m ├── SDWebImage ├── NSData+ImageContentType.h ├── NSData+ImageContentType.m ├── SDImageCache.h ├── SDImageCache.m ├── SDWebImageCompat.h ├── SDWebImageCompat.m ├── SDWebImageDecoder.h ├── SDWebImageDecoder.m ├── SDWebImageDownloader.h ├── SDWebImageDownloader.m ├── SDWebImageDownloaderOperation.h ├── SDWebImageDownloaderOperation.m ├── SDWebImageManager.h ├── SDWebImageManager.m ├── SDWebImageOperation.h ├── SDWebImagePrefetcher.h ├── SDWebImagePrefetcher.m ├── UIButton+WebCache.h ├── UIButton+WebCache.m ├── UIImage+GIF.h ├── UIImage+GIF.m ├── UIImage+MultiFormat.h ├── UIImage+MultiFormat.m ├── UIImage+WebP.h ├── UIImage+WebP.m ├── UIImageView+HighlightedWebCache.h ├── UIImageView+HighlightedWebCache.m ├── UIImageView+WebCache.h ├── UIImageView+WebCache.m ├── UIView+WebCacheOperation.h └── UIView+WebCacheOperation.m └── demo.gif /Examples/CustomPathImages/4ad9ae8eabfec60b40bf48f0bfc2d120: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/Examples/CustomPathImages/4ad9ae8eabfec60b40bf48f0bfc2d120 -------------------------------------------------------------------------------- /Examples/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/Examples/Default-568h@2x.png -------------------------------------------------------------------------------- /Examples/SDWebImage Demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/Examples/SDWebImage Demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/SDWebImage Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/Examples/SDWebImage Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/SDWebImage Demo.xcodeproj/project.xcworkspace/xcuserdata/linyunfeng.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/Examples/SDWebImage Demo.xcodeproj/project.xcworkspace/xcuserdata/linyunfeng.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Examples/SDWebImage Demo.xcodeproj/project.xcworkspace/xcuserdata/ljh.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/Examples/SDWebImage Demo.xcodeproj/project.xcworkspace/xcuserdata/ljh.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Examples/SDWebImage Demo.xcodeproj/xcuserdata/linyunfeng.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/Examples/SDWebImage Demo.xcodeproj/xcuserdata/linyunfeng.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Examples/SDWebImage Demo.xcodeproj/xcuserdata/linyunfeng.xcuserdatad/xcschemes/SDWebImage Demo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/Examples/SDWebImage Demo.xcodeproj/xcuserdata/linyunfeng.xcuserdatad/xcschemes/SDWebImage Demo.xcscheme -------------------------------------------------------------------------------- /Examples/SDWebImage Demo.xcodeproj/xcuserdata/linyunfeng.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/Examples/SDWebImage Demo.xcodeproj/xcuserdata/linyunfeng.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Examples/SDWebImage Demo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/Examples/SDWebImage Demo/AppDelegate.h -------------------------------------------------------------------------------- /Examples/SDWebImage Demo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/Examples/SDWebImage Demo/AppDelegate.m -------------------------------------------------------------------------------- /Examples/SDWebImage Demo/DetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/Examples/SDWebImage Demo/DetailViewController.h -------------------------------------------------------------------------------- /Examples/SDWebImage Demo/DetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/Examples/SDWebImage Demo/DetailViewController.m -------------------------------------------------------------------------------- /Examples/SDWebImage Demo/MasterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/Examples/SDWebImage Demo/MasterViewController.h -------------------------------------------------------------------------------- /Examples/SDWebImage Demo/MasterViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/Examples/SDWebImage Demo/MasterViewController.m -------------------------------------------------------------------------------- /Examples/SDWebImage Demo/SDWebImage Demo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/Examples/SDWebImage Demo/SDWebImage Demo-Info.plist -------------------------------------------------------------------------------- /Examples/SDWebImage Demo/SDWebImage Demo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/Examples/SDWebImage Demo/SDWebImage Demo-Prefix.pch -------------------------------------------------------------------------------- /Examples/SDWebImage Demo/en.lproj/DetailViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/Examples/SDWebImage Demo/en.lproj/DetailViewController.xib -------------------------------------------------------------------------------- /Examples/SDWebImage Demo/en.lproj/MasterViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/Examples/SDWebImage Demo/en.lproj/MasterViewController.xib -------------------------------------------------------------------------------- /Examples/SDWebImage Demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/Examples/SDWebImage Demo/main.m -------------------------------------------------------------------------------- /Examples/SDWebImage Demo/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/Examples/SDWebImage Demo/placeholder.png -------------------------------------------------------------------------------- /Examples/SDWebImage Demo/placeholder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/Examples/SDWebImage Demo/placeholder@2x.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/README.md -------------------------------------------------------------------------------- /SDWebImage-Category.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage-Category.podspec.json -------------------------------------------------------------------------------- /SDWebImage-Category/Resource/lk_click_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage-Category/Resource/lk_click_image.png -------------------------------------------------------------------------------- /SDWebImage-Category/Resource/lk_click_image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage-Category/Resource/lk_click_image@2x.png -------------------------------------------------------------------------------- /SDWebImage-Category/Resource/lk_click_image@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage-Category/Resource/lk_click_image@3x.png -------------------------------------------------------------------------------- /SDWebImage-Category/Resource/lk_noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage-Category/Resource/lk_noimage.png -------------------------------------------------------------------------------- /SDWebImage-Category/Resource/lk_noimage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage-Category/Resource/lk_noimage@2x.png -------------------------------------------------------------------------------- /SDWebImage-Category/THProgressView/LK_THProgressView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage-Category/THProgressView/LK_THProgressView.h -------------------------------------------------------------------------------- /SDWebImage-Category/THProgressView/LK_THProgressView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage-Category/THProgressView/LK_THProgressView.m -------------------------------------------------------------------------------- /SDWebImage-Category/UIImageView+LK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage-Category/UIImageView+LK.h -------------------------------------------------------------------------------- /SDWebImage-Category/UIImageView+LK.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage-Category/UIImageView+LK.m -------------------------------------------------------------------------------- /SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /SDWebImage/NSData+ImageContentType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage/NSData+ImageContentType.m -------------------------------------------------------------------------------- /SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /SDWebImage/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage/SDImageCache.m -------------------------------------------------------------------------------- /SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /SDWebImage/SDWebImageCompat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage/SDWebImageCompat.m -------------------------------------------------------------------------------- /SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /SDWebImage/SDWebImageDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage/SDWebImageDecoder.m -------------------------------------------------------------------------------- /SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /SDWebImage/SDWebImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage/SDWebImageDownloader.m -------------------------------------------------------------------------------- /SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /SDWebImage/SDWebImageDownloaderOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage/SDWebImageDownloaderOperation.m -------------------------------------------------------------------------------- /SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /SDWebImage/SDWebImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage/SDWebImageManager.m -------------------------------------------------------------------------------- /SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /SDWebImage/SDWebImagePrefetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage/SDWebImagePrefetcher.m -------------------------------------------------------------------------------- /SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /SDWebImage/UIButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage/UIButton+WebCache.m -------------------------------------------------------------------------------- /SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /SDWebImage/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage/UIImage+GIF.m -------------------------------------------------------------------------------- /SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /SDWebImage/UIImage+MultiFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage/UIImage+MultiFormat.m -------------------------------------------------------------------------------- /SDWebImage/UIImage+WebP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage/UIImage+WebP.h -------------------------------------------------------------------------------- /SDWebImage/UIImage+WebP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage/UIImage+WebP.m -------------------------------------------------------------------------------- /SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /SDWebImage/UIImageView+HighlightedWebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage/UIImageView+HighlightedWebCache.m -------------------------------------------------------------------------------- /SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /SDWebImage/UIImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage/UIImageView+WebCache.m -------------------------------------------------------------------------------- /SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /SDWebImage/UIView+WebCacheOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/SDWebImage/UIView+WebCacheOperation.m -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li6185377/SDWebImage-Category/HEAD/demo.gif --------------------------------------------------------------------------------