Blame view

SDWebImage/UIImageView+HighlightedWebCache.m 2.02 KB
1 2 3 4 5 6 7 8 9 10
/*
 * 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 "UIImageView+HighlightedWebCache.h"
11 12 13
#if SD_UIKIT

#import "UIView+WebCacheOperation.h"
14
#import "UIView+WebCache.h"
15 16 17

@implementation UIImageView (HighlightedWebCache)
18
- (void)sd_setHighlightedImageWithURL:(nullable NSURL *)url {
19
    [self sd_setHighlightedImageWithURL:url options:0 progress:nil completed:nil];
20 21
}
22
- (void)sd_setHighlightedImageWithURL:(nullable NSURL *)url options:(SDWebImageOptions)options {
23
    [self sd_setHighlightedImageWithURL:url options:options progress:nil completed:nil];
24 25
}
26
- (void)sd_setHighlightedImageWithURL:(nullable NSURL *)url completed:(nullable SDExternalCompletionBlock)completedBlock {
27
    [self sd_setHighlightedImageWithURL:url options:0 progress:nil completed:completedBlock];
28 29
}
30
- (void)sd_setHighlightedImageWithURL:(nullable NSURL *)url options:(SDWebImageOptions)options completed:(nullable SDExternalCompletionBlock)completedBlock {
31
    [self sd_setHighlightedImageWithURL:url options:options progress:nil completed:completedBlock];
32 33
}
34 35 36
- (void)sd_setHighlightedImageWithURL:(nullable NSURL *)url
                              options:(SDWebImageOptions)options
                             progress:(nullable SDWebImageDownloaderProgressBlock)progressBlock
37
                            completed:(nullable SDExternalCompletionBlock)completedBlock {
38 39 40 41 42 43 44 45 46 47
    __weak typeof(self)weakSelf = self;
    [self sd_internalSetImageWithURL:url
                    placeholderImage:nil
                             options:options
                        operationKey:@"UIImageViewImageOperationHighlighted"
                       setImageBlock:^(UIImage *image, NSData *imageData) {
                           weakSelf.highlightedImage = image;
                       }
                            progress:progressBlock
                           completed:completedBlock];
Whirlwind authored
48 49
}
50
@end
51 52

#endif