.. |
FLAnimatedImage
|
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 |
MKAnnotationView+WebCache.h
|
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 |
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 |
NSData+ImageContentType.h
|
Refactored NSData ImageContentType category, instead of returning the contentType as a string, the new added method `sd_imageFormatForImageData` will return a `SDImageFormat` enum value
|
2016-09-23 20:20:24 +03:00 |
NSData+ImageContentType.m
|
Refactored NSData ImageContentType category, instead of returning the contentType as a string, the new added method `sd_imageFormatForImageData` will return a `SDImageFormat` enum value
|
2016-09-23 20:20:24 +03: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
|
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 |
SDImageCache.h
|
Moved the `diskImageExistsWithKey:completion:` to the right place in the header
|
2016-09-23 23:53:51 +03:00 |
SDImageCache.m
|
Merge pull request #1676 from jimmaye/background-crash-io10
|
2016-09-30 21:26:02 +03:00 |
SDImageCacheConfig.h
|
Created a new class SDImageCacheConfig holding the configuration of the ImageCache. Easier to read code
|
2016-09-23 20:35:25 +03:00 |
SDImageCacheConfig.m
|
Created a new class SDImageCacheConfig holding the configuration of the ImageCache. Easier to read code
|
2016-09-23 20:35:25 +03:00 |
SDWebImageCompat.h
|
Replacing #781 - replaced all the remaining `dispatch_main_sync_safe` with `dispatch_main_async_safe`, so we no longer `dispatch_sync` on the main queue that can create issues.
|
2016-09-30 13:22:56 +03:00 |
SDWebImageCompat.m
|
OSX compatibility and target. (NSImage+WebCache) for UIImage compatibility
|
2016-06-12 23:23:53 +03:00 |
SDWebImageDecoder.h
|
Implemented Nullability according to https://developer.apple.com/swift/blog/?id=25. Decided to make explicit nullable and nonnull and not use NS_ASSUME_NONNULL_BEGIN so everything is clearer when read. Done so in the implementation files as well
|
2016-06-07 08:48:45 +03:00 |
SDWebImageDecoder.m
|
OSX compatibility and target. (NSImage+WebCache) for UIImage compatibility
|
2016-06-12 23:23:53 +03:00 |
SDWebImageDownloader.h
|
Added missing property code comment
|
2016-09-23 20:38:04 +03:00 |
SDWebImageDownloader.m
|
Created `SDWebImageDownloaderOperationInterface` to describe the behavior of a downloader operation. Any custom operation must conform to this protocol.
|
2016-09-23 21:11:34 +03:00 |
SDWebImageDownloaderOperation.h
|
Created `SDWebImageDownloaderOperationInterface` to describe the behavior of a downloader operation. Any custom operation must conform to this protocol.
|
2016-09-23 21:11:34 +03:00 |
SDWebImageDownloaderOperation.m
|
Replacing #781 - made sure all the completionBlocks called from `SDWebImageDownloaderOperation` are called on the main queue. Created 2 methods to simplify the code for calling the completions
|
2016-09-30 14:43:38 +03:00 |
SDWebImageManager.h
|
Removed the synchronous methods `diskImageExistsForURL:` and `cachedImageExistsForURL:` from `SDWebImageManager`
|
2016-09-23 20:42:22 +03:00 |
SDWebImageManager.m
|
Replacing #781 - made sure completionBlock called from `SDWebImageManager` is called on the main queue. Created 2 methods to simplify the code for calling the completions
|
2016-09-30 15:19:17 +03:00 |
SDWebImageOperation.h
|
Fix source file headers
|
2012-11-05 18:21:19 +01:00 |
SDWebImagePrefetcher.h
|
Implemented Nullability according to https://developer.apple.com/swift/blog/?id=25. Decided to make explicit nullable and nonnull and not use NS_ASSUME_NONNULL_BEGIN so everything is clearer when read. Done so in the implementation files as well
|
2016-06-07 08:48:45 +03:00 |
SDWebImagePrefetcher.m
|
Merge branch '4.x' into gif
|
2016-06-07 12:42:26 +03:00 |
UIButton+WebCache.h
|
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 |
UIButton+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 |
UIImage+GIF.h
|
OSX compatibility and target. (NSImage+WebCache) for UIImage compatibility
|
2016-06-12 23:23:53 +03:00 |
UIImage+GIF.m
|
OSX compatibility and target. (NSImage+WebCache) for UIImage compatibility
|
2016-06-12 23:23:53 +03:00 |
UIImage+MultiFormat.h
|
Preparing to remove the need for the `recalculateFromImage` param for store in cache. Only if the data provided is nil and we have an image, we will recaculate. Moved the NSData calculation in the UIImage MultiFormat categ, plus instead of another variant to check for PNG, relly on `sd_imageFormatForImageData`
|
2016-09-23 20:26:46 +03:00 |
UIImage+MultiFormat.m
|
Preparing to remove the need for the `recalculateFromImage` param for store in cache. Only if the data provided is nil and we have an image, we will recaculate. Moved the NSData calculation in the UIImage MultiFormat categ, plus instead of another variant to check for PNG, relly on `sd_imageFormatForImageData`
|
2016-09-23 20:26:46 +03:00 |
UIImage+WebP.h
|
OSX compatibility and target. (NSImage+WebCache) for UIImage compatibility
|
2016-06-12 23:23:53 +03:00 |
UIImage+WebP.m
|
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 |
UIImageView+HighlightedWebCache.h
|
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+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
|
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.m
|
Replacing #781 - replaced all the remaining `dispatch_main_sync_safe` with `dispatch_main_async_safe`, so we no longer `dispatch_sync` on the main queue that can create issues.
|
2016-09-30 13:22:56 +03:00 |
UIView+WebCache.h
|
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 |
UIView+WebCache.m
|
Replacing #781 - replaced all the remaining `dispatch_main_sync_safe` with `dispatch_main_async_safe`, so we no longer `dispatch_sync` on the main queue that can create issues.
|
2016-09-30 13:22:56 +03:00 |
UIView+WebCacheOperation.h
|
OSX compatibility and target. (NSImage+WebCache) for UIImage compatibility
|
2016-06-12 23:23:53 +03:00 |
UIView+WebCacheOperation.m
|
Made sure we don't crash here if the operation is nil at some point
|
2016-09-30 15:27:31 +03:00 |