|
|
@@ -12,47 +12,14 @@
|
|
|
|
|
|
#import "objc/runtime.h"
|
|
|
#import "UIView+WebCacheOperation.h"
|
|
|
+#import "UIView+WebCacheState.h"
|
|
|
#import "UIView+WebCache.h"
|
|
|
#import "SDInternalMacros.h"
|
|
|
|
|
|
-static char imageURLStorageKey;
|
|
|
-
|
|
|
-typedef NSMutableDictionary<NSString *, NSURL *> SDStateImageURLDictionary;
|
|
|
-
|
|
|
-static inline NSString * imageURLKeyForState(UIControlState state) {
|
|
|
- return [NSString stringWithFormat:@"image_%lu", (unsigned long)state];
|
|
|
-}
|
|
|
-
|
|
|
-static inline NSString * backgroundImageURLKeyForState(UIControlState state) {
|
|
|
- return [NSString stringWithFormat:@"backgroundImage_%lu", (unsigned long)state];
|
|
|
-}
|
|
|
-
|
|
|
-static inline NSString * imageOperationKeyForState(UIControlState state) {
|
|
|
- return [NSString stringWithFormat:@"UIButtonImageOperation%lu", (unsigned long)state];
|
|
|
-}
|
|
|
-
|
|
|
-static inline NSString * backgroundImageOperationKeyForState(UIControlState state) {
|
|
|
- return [NSString stringWithFormat:@"UIButtonBackgroundImageOperation%lu", (unsigned long)state];
|
|
|
-}
|
|
|
-
|
|
|
@implementation UIButton (WebCache)
|
|
|
|
|
|
#pragma mark - Image
|
|
|
|
|
|
-- (nullable NSURL *)sd_currentImageURL {
|
|
|
- NSURL *url = self.sd_imageURLStorage[imageURLKeyForState(self.state)];
|
|
|
-
|
|
|
- if (!url) {
|
|
|
- url = self.sd_imageURLStorage[imageURLKeyForState(UIControlStateNormal)];
|
|
|
- }
|
|
|
-
|
|
|
- return url;
|
|
|
-}
|
|
|
-
|
|
|
-- (nullable NSURL *)sd_imageURLForState:(UIControlState)state {
|
|
|
- return self.sd_imageURLStorage[imageURLKeyForState(state)];
|
|
|
-}
|
|
|
-
|
|
|
- (void)sd_setImageWithURL:(nullable NSURL *)url forState:(UIControlState)state {
|
|
|
[self sd_setImageWithURL:url forState:state placeholderImage:nil options:0 completed:nil];
|
|
|
}
|
|
|
@@ -92,19 +59,13 @@ static inline NSString * backgroundImageOperationKeyForState(UIControlState stat
|
|
|
context:(nullable SDWebImageContext *)context
|
|
|
progress:(nullable SDImageLoaderProgressBlock)progressBlock
|
|
|
completed:(nullable SDExternalCompletionBlock)completedBlock {
|
|
|
- if (!url) {
|
|
|
- [self.sd_imageURLStorage removeObjectForKey:imageURLKeyForState(state)];
|
|
|
- } else {
|
|
|
- self.sd_imageURLStorage[imageURLKeyForState(state)] = url;
|
|
|
- }
|
|
|
-
|
|
|
SDWebImageMutableContext *mutableContext;
|
|
|
if (context) {
|
|
|
mutableContext = [context mutableCopy];
|
|
|
} else {
|
|
|
mutableContext = [NSMutableDictionary dictionary];
|
|
|
}
|
|
|
- mutableContext[SDWebImageContextSetImageOperationKey] = imageOperationKeyForState(state);
|
|
|
+ mutableContext[SDWebImageContextSetImageOperationKey] = [self sd_imageOperationKeyForState:state];
|
|
|
@weakify(self);
|
|
|
[self sd_internalSetImageWithURL:url
|
|
|
placeholderImage:placeholder
|
|
|
@@ -124,20 +85,6 @@ static inline NSString * backgroundImageOperationKeyForState(UIControlState stat
|
|
|
|
|
|
#pragma mark - Background Image
|
|
|
|
|
|
-- (nullable NSURL *)sd_currentBackgroundImageURL {
|
|
|
- NSURL *url = self.sd_imageURLStorage[backgroundImageURLKeyForState(self.state)];
|
|
|
-
|
|
|
- if (!url) {
|
|
|
- url = self.sd_imageURLStorage[backgroundImageURLKeyForState(UIControlStateNormal)];
|
|
|
- }
|
|
|
-
|
|
|
- return url;
|
|
|
-}
|
|
|
-
|
|
|
-- (nullable NSURL *)sd_backgroundImageURLForState:(UIControlState)state {
|
|
|
- return self.sd_imageURLStorage[backgroundImageURLKeyForState(state)];
|
|
|
-}
|
|
|
-
|
|
|
- (void)sd_setBackgroundImageWithURL:(nullable NSURL *)url forState:(UIControlState)state {
|
|
|
[self sd_setBackgroundImageWithURL:url forState:state placeholderImage:nil options:0 completed:nil];
|
|
|
}
|
|
|
@@ -177,19 +124,13 @@ static inline NSString * backgroundImageOperationKeyForState(UIControlState stat
|
|
|
context:(nullable SDWebImageContext *)context
|
|
|
progress:(nullable SDImageLoaderProgressBlock)progressBlock
|
|
|
completed:(nullable SDExternalCompletionBlock)completedBlock {
|
|
|
- if (!url) {
|
|
|
- [self.sd_imageURLStorage removeObjectForKey:backgroundImageURLKeyForState(state)];
|
|
|
- } else {
|
|
|
- self.sd_imageURLStorage[backgroundImageURLKeyForState(state)] = url;
|
|
|
- }
|
|
|
-
|
|
|
SDWebImageMutableContext *mutableContext;
|
|
|
if (context) {
|
|
|
mutableContext = [context mutableCopy];
|
|
|
} else {
|
|
|
mutableContext = [NSMutableDictionary dictionary];
|
|
|
}
|
|
|
- mutableContext[SDWebImageContextSetImageOperationKey] = backgroundImageOperationKeyForState(state);
|
|
|
+ mutableContext[SDWebImageContextSetImageOperationKey] = [self sd_backgroundImageOperationKeyForState:state];
|
|
|
@weakify(self);
|
|
|
[self sd_internalSetImageWithURL:url
|
|
|
placeholderImage:placeholder
|
|
|
@@ -210,23 +151,46 @@ static inline NSString * backgroundImageOperationKeyForState(UIControlState stat
|
|
|
#pragma mark - Cancel
|
|
|
|
|
|
- (void)sd_cancelImageLoadForState:(UIControlState)state {
|
|
|
- [self sd_cancelImageLoadOperationWithKey:imageOperationKeyForState(state)];
|
|
|
+ [self sd_cancelImageLoadOperationWithKey:[self sd_imageOperationKeyForState:state]];
|
|
|
}
|
|
|
|
|
|
- (void)sd_cancelBackgroundImageLoadForState:(UIControlState)state {
|
|
|
- [self sd_cancelImageLoadOperationWithKey:backgroundImageOperationKeyForState(state)];
|
|
|
+ [self sd_cancelImageLoadOperationWithKey:[self sd_backgroundImageOperationKeyForState:state]];
|
|
|
}
|
|
|
|
|
|
-#pragma mark - Private
|
|
|
+#pragma mark - State
|
|
|
+
|
|
|
+- (NSString *)sd_imageOperationKeyForState:(UIControlState)state {
|
|
|
+ return [NSString stringWithFormat:@"UIButtonImageOperation%lu", (unsigned long)state];
|
|
|
+}
|
|
|
|
|
|
-- (SDStateImageURLDictionary *)sd_imageURLStorage {
|
|
|
- SDStateImageURLDictionary *storage = objc_getAssociatedObject(self, &imageURLStorageKey);
|
|
|
- if (!storage) {
|
|
|
- storage = [NSMutableDictionary dictionary];
|
|
|
- objc_setAssociatedObject(self, &imageURLStorageKey, storage, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
|
|
|
+- (NSString *)sd_backgroundImageOperationKeyForState:(UIControlState)state {
|
|
|
+ return [NSString stringWithFormat:@"UIButtonBackgroundImageOperation%lu", (unsigned long)state];
|
|
|
+}
|
|
|
+
|
|
|
+- (NSURL *)sd_currentImageURL {
|
|
|
+ NSURL *url = [self sd_imageURLForState:self.state];
|
|
|
+ if (!url) {
|
|
|
+ [self sd_imageURLForState:UIControlStateNormal];
|
|
|
+ }
|
|
|
+ return url;
|
|
|
+}
|
|
|
+
|
|
|
+- (NSURL *)sd_imageURLForState:(UIControlState)state {
|
|
|
+ return [self sd_imageLoadStateForKey:[self sd_imageOperationKeyForState:state]].url;
|
|
|
+}
|
|
|
+#pragma mark - Background State
|
|
|
+
|
|
|
+- (NSURL *)sd_currentBackgroundImageURL {
|
|
|
+ NSURL *url = [self sd_backgroundImageURLForState:self.state];
|
|
|
+ if (!url) {
|
|
|
+ url = [self sd_backgroundImageURLForState:UIControlStateNormal];
|
|
|
}
|
|
|
+ return url;
|
|
|
+}
|
|
|
|
|
|
- return storage;
|
|
|
+- (NSURL *)sd_backgroundImageURLForState:(UIControlState)state {
|
|
|
+ return [self sd_imageLoadStateForKey:[self sd_backgroundImageOperationKeyForState:state]].url;
|
|
|
}
|
|
|
|
|
|
@end
|