SDWebImage/SDWebImage
DreamPiggy dd68f2f2d4 Ensure all the session delegate completionHandler called. Fix the leak when response error code below iOS 10 2018-01-29 14:12:00 +08:00
..
FLAnimatedImage Expose the associate FLAnimatedImage to user for advanced usage. Update the comments 2018-01-27 14:47:43 +08:00
MKAnnotationView+WebCache.h Fix #1764 Swift naming collision 2017-02-10 21:02:32 +08:00
MKAnnotationView+WebCache.m Refactored all the duplicate code from our WebCache categories into a UIView+WebCache category. All the other categories will make calls to this one. Customization of setting the image is done via the setImageBlock and the operationKey 2016-09-25 19:44:52 +03:00
NSButton+WebCache.h Add the current image/alternateImage url for NSButton category. A little code refactoring 2018-01-26 14:28:50 +08:00
NSButton+WebCache.m Add the current image/alternateImage url for NSButton category. A little code refactoring 2018-01-26 14:28:50 +08:00
NSData+ImageContentType.h Add image format detect of HEIC (One type of HEIF which use HEVC codec). This is supported natively in iOS 11 & macOS 10.13 2017-10-26 22:33:24 +08:00
NSData+ImageContentType.m Add all 4 standard HEIC brand file signature, ftypheic & ftypheix is for single image, ftyphevc & ftyphevx is for sequence image 2017-10-27 17:13:42 +08:00
NSImage+WebCache.h Fixed build due to latest animated WebP support that was not properly adapted for OSX. For OSX, this will not work because the `animatedImageWithImages:duration:` API does not have an equivalent there. 2016-09-30 09:32:34 +03:00
NSImage+WebCache.m Feature refactor built-in coders and support animated webp on macOS (#2082) 2017-10-31 20:34:05 +02:00
SDImageCache.h Revert that SDImageCacheQueryMemoryOnly because it's misunderstanding. Use `imageFromMemoryCacheForKey` instead 2018-01-26 23:42:51 +08:00
SDImageCache.m Revert that SDImageCacheQueryMemoryOnly because it's misunderstanding. Use `imageFromMemoryCacheForKey` instead 2018-01-26 23:42:51 +08:00
SDImageCacheConfig.h Use a internal method to avoid thread-safe issue for file manager. Remove that checkIOQueue and add sync version exist API 2018-01-24 23:30:53 +08:00
SDImageCacheConfig.m Use a internal method to avoid thread-safe issue for file manager. Remove that checkIOQueue and add sync version exist API 2018-01-24 23:30:53 +08:00
SDWebImageCoder.h Add some more comments about coder method 2017-10-27 00:22:58 +08:00
SDWebImageCoder.m Feature: refactor decoding code and provide decoding plugin 2017-10-16 19:52:18 +03:00
SDWebImageCoderHelper.h Feature refactor built-in coders and support animated webp on macOS (#2082) 2017-10-31 20:34:05 +02:00
SDWebImageCoderHelper.m Feature refactor built-in coders and support animated webp on macOS (#2082) 2017-10-31 20:34:05 +02:00
SDWebImageCodersManager.h Creating FLAnimatedImage in global queue to improve displaying gif performance (#2047) 2017-10-25 09:05:46 +03:00
SDWebImageCodersManager.m Remove the out-dated compatible code for non-ARC 2017-12-15 20:11:42 +08:00
SDWebImageCompat.h Remove the out-dated compatible code for non-ARC 2017-12-15 20:11:42 +08:00
SDWebImageCompat.m Remove the out-dated compatible code for non-ARC 2017-12-15 20:11:42 +08:00
SDWebImageDownloader.h Add a convenience method to allow cancel on downloadToken 2018-01-19 21:27:56 +08:00
SDWebImageDownloader.m Ensure all the session delegate completionHandler called. Fix the leak when response error code below iOS 10 2018-01-29 14:12:00 +08:00
SDWebImageDownloaderOperation.h Add a convenience method to allow cancel on downloadToken 2018-01-19 21:27:56 +08:00
SDWebImageDownloaderOperation.m Use the @synchronized to access NSURLCache to fix the potential thread-safe problem, also fix that we always use shared cache but not follow session's configuration 2018-01-14 18:03:06 +08:00
SDWebImageFrame.h Feature refactor built-in coders and support animated webp on macOS (#2082) 2017-10-31 20:34:05 +02:00
SDWebImageFrame.m Feature refactor built-in coders and support animated webp on macOS (#2082) 2017-10-31 20:34:05 +02:00
SDWebImageGIFCoder.h Creating FLAnimatedImage in global queue to improve displaying gif performance (#2047) 2017-10-25 09:05:46 +03:00
SDWebImageGIFCoder.m Add protect to some Core Graphics methods 2018-01-21 23:43:48 +08:00
SDWebImageImageIOCoder.h Adopt the current requirement, change ImageIO coder's canDeocdeFromHEIC to actual implementation 2017-12-29 19:19:50 +08:00
SDWebImageImageIOCoder.m Change all UIImage init method to alloc instead of autorelease to immediately release it after usage 2018-01-21 23:32:26 +08:00
SDWebImageManager.h Revert that SDImageCacheQueryMemoryOnly because it's misunderstanding. Use `imageFromMemoryCacheForKey` instead 2018-01-26 23:42:51 +08:00
SDWebImageManager.m Revert that SDImageCacheQueryMemoryOnly because it's misunderstanding. Use `imageFromMemoryCacheForKey` instead 2018-01-26 23:42:51 +08:00
SDWebImageOperation.h Fix source file headers 2012-11-05 18:21:19 +01:00
SDWebImagePrefetcher.h Remove the out-dated compatible code for non-ARC 2017-12-15 20:11:42 +08:00
SDWebImagePrefetcher.m Fix the issue that prefetcher will cause stack overflow is the input urls list is huge because of recursion function call 2018-01-28 19:06:46 +08:00
SDWebImageTransition.h Update the comments for image transition 2018-01-27 15:20:02 +08:00
SDWebImageTransition.m Add the image transition argument for all UIView+WebCache, make this easy for user to do some fade transition. It also reuse the current setImageBlock and make it easy to customize 2018-01-23 11:58:22 +08:00
SDWebImageWebPCoder.h Feature: refactor decoding code and provide decoding plugin 2017-10-16 19:52:18 +03:00
SDWebImageWebPCoder.m Add protect to some Core Graphics methods 2018-01-21 23:43:48 +08:00
UIButton+WebCache.h Fix that reset alternateImage cancel the image load operation for NSButton+WebCache 2018-01-25 16:40:40 +08:00
UIButton+WebCache.m Add the current image/alternateImage url for NSButton category. A little code refactoring 2018-01-26 14:28:50 +08:00
UIImage+ForceDecode.h Feature: refactor decoding code and provide decoding plugin 2017-10-16 19:52:18 +03:00
UIImage+ForceDecode.m Feature: refactor decoding code and provide decoding plugin 2017-10-16 19:52:18 +03:00
UIImage+GIF.h Fix the strange file permissions issue 2018-01-15 19:57:24 +08:00
UIImage+GIF.m Fix the strange file permissions issue 2018-01-15 19:57:24 +08:00
UIImage+MultiFormat.h Feature refactor built-in coders and support animated webp on macOS (#2082) 2017-10-31 20:34:05 +02:00
UIImage+MultiFormat.m Feature refactor built-in coders and support animated webp on macOS (#2082) 2017-10-31 20:34:05 +02:00
UIImage+WebP.h Feature: refactor decoding code and provide decoding plugin 2017-10-16 19:52:18 +03:00
UIImage+WebP.m Feature: refactor decoding code and provide decoding plugin 2017-10-16 19:52:18 +03:00
UIImageView+HighlightedWebCache.h Fix #1764 Swift naming collision 2017-02-10 21:02:32 +08:00
UIImageView+HighlightedWebCache.m Refactored all the duplicate code from our WebCache categories into a UIView+WebCache category. All the other categories will make calls to this one. Customization of setting the image is done via the setImageBlock and the operationKey 2016-09-25 19:44:52 +03:00
UIImageView+WebCache.h Deprecate the sd_setImageWithPreviousCachedImageWithURL with the specify options to achieve this usage 2018-01-14 23:34:35 +08:00
UIImageView+WebCache.m Fix the issue that `setAnimationImagesWithURLs` weak reference may dealloc before the animated images was set 2018-01-15 20:19:43 +08:00
UIView+WebCache.h Add the image transition argument for all UIView+WebCache, make this easy for user to do some fade transition. It also reuse the current setImageBlock and make it easy to customize 2018-01-23 11:58:22 +08:00
UIView+WebCache.m A little enhancement to avoid block capture the heap object 2018-01-24 23:58:49 +08:00
UIView+WebCacheOperation.h Remove some unused code, fix typo, update the comments 2017-12-17 19:45:51 +08:00
UIView+WebCacheOperation.m Remove some unused code, fix typo, update the comments 2017-12-17 19:45:51 +08:00