191 lines
8.1 KiB
Objective-C
191 lines
8.1 KiB
Objective-C
/*
|
|
* This file is part of the SDWebImage package.
|
|
* (c) Olivier Poitrey <rs@dailymotion.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
#import "UIButton+WebCache.h"
|
|
|
|
#if SD_UIKIT
|
|
|
|
#import "objc/runtime.h"
|
|
#import "UIView+WebCacheOperation.h"
|
|
|
|
static char imageURLStorageKey;
|
|
|
|
typedef NSMutableDictionary<NSNumber *, NSURL *> SDStateImageURLDictionary;
|
|
|
|
@implementation UIButton (WebCache)
|
|
|
|
- (nullable NSURL *)sd_currentImageURL {
|
|
NSURL *url = self.imageURLStorage[@(self.state)];
|
|
|
|
if (!url) {
|
|
url = self.imageURLStorage[@(UIControlStateNormal)];
|
|
}
|
|
|
|
return url;
|
|
}
|
|
|
|
- (nullable NSURL *)sd_imageURLForState:(UIControlState)state {
|
|
return self.imageURLStorage[@(state)];
|
|
}
|
|
|
|
- (void)sd_setImageWithURL:(nullable NSURL *)url forState:(UIControlState)state {
|
|
[self sd_setImageWithURL:url forState:state placeholderImage:nil options:0 completed:nil];
|
|
}
|
|
|
|
- (void)sd_setImageWithURL:(nullable NSURL *)url forState:(UIControlState)state placeholderImage:(nullable UIImage *)placeholder {
|
|
[self sd_setImageWithURL:url forState:state placeholderImage:placeholder options:0 completed:nil];
|
|
}
|
|
|
|
- (void)sd_setImageWithURL:(nullable NSURL *)url forState:(UIControlState)state placeholderImage:(nullable UIImage *)placeholder options:(SDWebImageOptions)options {
|
|
[self sd_setImageWithURL:url forState:state placeholderImage:placeholder options:options completed:nil];
|
|
}
|
|
|
|
- (void)sd_setImageWithURL:(nullable NSURL *)url forState:(UIControlState)state completed:(nullable SDExternalCompletionBlock)completedBlock {
|
|
[self sd_setImageWithURL:url forState:state placeholderImage:nil options:0 completed:completedBlock];
|
|
}
|
|
|
|
- (void)sd_setImageWithURL:(nullable NSURL *)url forState:(UIControlState)state placeholderImage:(nullable UIImage *)placeholder completed:(nullable SDExternalCompletionBlock)completedBlock {
|
|
[self sd_setImageWithURL:url forState:state placeholderImage:placeholder options:0 completed:completedBlock];
|
|
}
|
|
|
|
- (void)sd_setImageWithURL:(nullable NSURL *)url
|
|
forState:(UIControlState)state
|
|
placeholderImage:(nullable UIImage *)placeholder
|
|
options:(SDWebImageOptions)options
|
|
completed:(nullable SDExternalCompletionBlock)completedBlock {
|
|
[self setImage:placeholder forState:state];
|
|
[self sd_cancelImageLoadForState:state];
|
|
|
|
if (!url) {
|
|
[self.imageURLStorage removeObjectForKey:@(state)];
|
|
|
|
dispatch_main_async_safe(^{
|
|
if (completedBlock) {
|
|
NSError *error = [NSError errorWithDomain:SDWebImageErrorDomain code:-1 userInfo:@{NSLocalizedDescriptionKey : @"Trying to load a nil url"}];
|
|
completedBlock(nil, error, SDImageCacheTypeNone, url);
|
|
}
|
|
});
|
|
|
|
return;
|
|
}
|
|
|
|
self.imageURLStorage[@(state)] = url;
|
|
|
|
__weak __typeof(self)wself = self;
|
|
id <SDWebImageOperation> operation = [SDWebImageManager.sharedManager loadImageWithURL:url options:options progress:nil completed:^(UIImage *image, NSData *data, NSError *error, SDImageCacheType cacheType, BOOL finished, NSURL *imageURL) {
|
|
if (!wself) return;
|
|
dispatch_main_sync_safe(^{
|
|
__strong UIButton *sself = wself;
|
|
if (!sself) return;
|
|
if (image && (options & SDWebImageAvoidAutoSetImage) && completedBlock)
|
|
{
|
|
completedBlock(image, error, cacheType, url);
|
|
return;
|
|
}
|
|
else if (image) {
|
|
[sself setImage:image forState:state];
|
|
}
|
|
if (completedBlock && finished) {
|
|
completedBlock(image, error, cacheType, url);
|
|
}
|
|
});
|
|
}];
|
|
[self sd_setImageLoadOperation:operation forState:state];
|
|
}
|
|
|
|
- (void)sd_setBackgroundImageWithURL:(nullable NSURL *)url forState:(UIControlState)state {
|
|
[self sd_setBackgroundImageWithURL:url forState:state placeholderImage:nil options:0 completed:nil];
|
|
}
|
|
|
|
- (void)sd_setBackgroundImageWithURL:(nullable NSURL *)url forState:(UIControlState)state placeholderImage:(nullable UIImage *)placeholder {
|
|
[self sd_setBackgroundImageWithURL:url forState:state placeholderImage:placeholder options:0 completed:nil];
|
|
}
|
|
|
|
- (void)sd_setBackgroundImageWithURL:(nullable NSURL *)url forState:(UIControlState)state placeholderImage:(nullable UIImage *)placeholder options:(SDWebImageOptions)options {
|
|
[self sd_setBackgroundImageWithURL:url forState:state placeholderImage:placeholder options:options completed:nil];
|
|
}
|
|
|
|
- (void)sd_setBackgroundImageWithURL:(nullable NSURL *)url forState:(UIControlState)state completed:(nullable SDExternalCompletionBlock)completedBlock {
|
|
[self sd_setBackgroundImageWithURL:url forState:state placeholderImage:nil options:0 completed:completedBlock];
|
|
}
|
|
|
|
- (void)sd_setBackgroundImageWithURL:(nullable NSURL *)url forState:(UIControlState)state placeholderImage:(nullable UIImage *)placeholder completed:(nullable SDExternalCompletionBlock)completedBlock {
|
|
[self sd_setBackgroundImageWithURL:url forState:state placeholderImage:placeholder options:0 completed:completedBlock];
|
|
}
|
|
|
|
- (void)sd_setBackgroundImageWithURL:(nullable NSURL *)url
|
|
forState:(UIControlState)state
|
|
placeholderImage:(nullable UIImage *)placeholder
|
|
options:(SDWebImageOptions)options
|
|
completed:(nullable SDExternalCompletionBlock)completedBlock {
|
|
[self sd_cancelBackgroundImageLoadForState:state];
|
|
|
|
[self setBackgroundImage:placeholder forState:state];
|
|
|
|
if (url) {
|
|
__weak __typeof(self)wself = self;
|
|
id <SDWebImageOperation> operation = [SDWebImageManager.sharedManager loadImageWithURL:url options:options progress:nil completed:^(UIImage *image, NSData *data, NSError *error, SDImageCacheType cacheType, BOOL finished, NSURL *imageURL) {
|
|
if (!wself) return;
|
|
dispatch_main_sync_safe(^{
|
|
__strong UIButton *sself = wself;
|
|
if (!sself) return;
|
|
if (image && (options & SDWebImageAvoidAutoSetImage) && completedBlock)
|
|
{
|
|
completedBlock(image, error, cacheType, url);
|
|
return;
|
|
}
|
|
else if (image) {
|
|
[sself setBackgroundImage:image forState:state];
|
|
}
|
|
if (completedBlock && finished) {
|
|
completedBlock(image, error, cacheType, url);
|
|
}
|
|
});
|
|
}];
|
|
[self sd_setBackgroundImageLoadOperation:operation forState:state];
|
|
} else {
|
|
dispatch_main_async_safe(^{
|
|
NSError *error = [NSError errorWithDomain:SDWebImageErrorDomain code:-1 userInfo:@{NSLocalizedDescriptionKey : @"Trying to load a nil url"}];
|
|
if (completedBlock) {
|
|
completedBlock(nil, error, SDImageCacheTypeNone, url);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
- (void)sd_setImageLoadOperation:(id<SDWebImageOperation>)operation forState:(UIControlState)state {
|
|
[self sd_setImageLoadOperation:operation forKey:[NSString stringWithFormat:@"UIButtonImageOperation%@", @(state)]];
|
|
}
|
|
|
|
- (void)sd_cancelImageLoadForState:(UIControlState)state {
|
|
[self sd_cancelImageLoadOperationWithKey:[NSString stringWithFormat:@"UIButtonImageOperation%@", @(state)]];
|
|
}
|
|
|
|
- (void)sd_setBackgroundImageLoadOperation:(id<SDWebImageOperation>)operation forState:(UIControlState)state {
|
|
[self sd_setImageLoadOperation:operation forKey:[NSString stringWithFormat:@"UIButtonBackgroundImageOperation%@", @(state)]];
|
|
}
|
|
|
|
- (void)sd_cancelBackgroundImageLoadForState:(UIControlState)state {
|
|
[self sd_cancelImageLoadOperationWithKey:[NSString stringWithFormat:@"UIButtonBackgroundImageOperation%@", @(state)]];
|
|
}
|
|
|
|
- (SDStateImageURLDictionary *)imageURLStorage {
|
|
SDStateImageURLDictionary *storage = objc_getAssociatedObject(self, &imageURLStorageKey);
|
|
if (!storage)
|
|
{
|
|
storage = [NSMutableDictionary dictionary];
|
|
objc_setAssociatedObject(self, &imageURLStorageKey, storage, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
|
|
}
|
|
|
|
return storage;
|
|
}
|
|
|
|
@end
|
|
|
|
#endif
|