124 lines
4.8 KiB
Objective-C
124 lines
4.8 KiB
Objective-C
//
|
|
// MKAnnotationView+WebCache.m
|
|
// SDWebImage
|
|
//
|
|
// Created by Olivier Poitrey on 14/03/12.
|
|
// Copyright (c) 2012 Dailymotion. All rights reserved.
|
|
//
|
|
|
|
#import "MKAnnotationView+WebCache.h"
|
|
#import "objc/runtime.h"
|
|
|
|
static char imageURLKey;
|
|
static char operationKey;
|
|
|
|
@implementation MKAnnotationView (WebCache)
|
|
|
|
- (NSURL *)imageURL {
|
|
return objc_getAssociatedObject(self, &imageURLKey);
|
|
}
|
|
|
|
- (void)sd_setImageWithURL:(NSURL *)url {
|
|
[self sd_setImageWithURL:url placeholderImage:nil options:0 completed:nil];
|
|
}
|
|
|
|
- (void)sd_setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder {
|
|
[self sd_setImageWithURL:url placeholderImage:placeholder options:0 completed:nil];
|
|
}
|
|
|
|
- (void)sd_setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder options:(SDWebImageOptions)options {
|
|
[self sd_setImageWithURL:url placeholderImage:placeholder options:options completed:nil];
|
|
}
|
|
|
|
- (void)sd_setImageWithURL:(NSURL *)url completed:(SDWebImageCompletionBlock)completedBlock {
|
|
[self sd_setImageWithURL:url placeholderImage:nil options:0 completed:completedBlock];
|
|
}
|
|
|
|
- (void)sd_setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder completed:(SDWebImageCompletionBlock)completedBlock {
|
|
[self sd_setImageWithURL:url placeholderImage:placeholder options:0 completed:completedBlock];
|
|
}
|
|
|
|
- (void)sd_setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder options:(SDWebImageOptions)options completed:(SDWebImageCompletionBlock)completedBlock {
|
|
[self cancelCurrentImageLoad];
|
|
|
|
objc_setAssociatedObject(self, &imageURLKey, url, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
|
|
self.image = placeholder;
|
|
|
|
if (url) {
|
|
__weak MKAnnotationView *wself = self;
|
|
id <SDWebImageOperation> operation = [SDWebImageManager.sharedManager downloadImageWithURL:url options:options progress:nil completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, BOOL finished, NSURL *imageURL) {
|
|
if (!wself) return;
|
|
dispatch_main_sync_safe(^{
|
|
__strong MKAnnotationView *sself = wself;
|
|
if (!sself) return;
|
|
if (image) {
|
|
sself.image = image;
|
|
}
|
|
if (completedBlock && finished) {
|
|
completedBlock(image, error, cacheType, url);
|
|
}
|
|
});
|
|
}];
|
|
objc_setAssociatedObject(self, &operationKey, operation, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
|
|
} 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)cancelCurrentImageLoad {
|
|
// Cancel in progress downloader from queue
|
|
id <SDWebImageOperation> operation = objc_getAssociatedObject(self, &operationKey);
|
|
if (operation) {
|
|
[operation cancel];
|
|
objc_setAssociatedObject(self, &operationKey, nil, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
|
|
}
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
@implementation MKAnnotationView (WebCacheDeprecated)
|
|
|
|
- (void)setImageWithURL:(NSURL *)url {
|
|
[self sd_setImageWithURL:url placeholderImage:nil options:0 completed:nil];
|
|
}
|
|
|
|
- (void)setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder {
|
|
[self sd_setImageWithURL:url placeholderImage:placeholder options:0 completed:nil];
|
|
}
|
|
|
|
- (void)setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder options:(SDWebImageOptions)options {
|
|
[self sd_setImageWithURL:url placeholderImage:placeholder options:options completed:nil];
|
|
}
|
|
|
|
- (void)setImageWithURL:(NSURL *)url completed:(SDWebImageCompletedBlock)completedBlock {
|
|
[self sd_setImageWithURL:url placeholderImage:nil options:0 completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, NSURL *imageURL) {
|
|
if (completedBlock) {
|
|
completedBlock(image, error, cacheType);
|
|
}
|
|
}];
|
|
}
|
|
|
|
- (void)setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder completed:(SDWebImageCompletedBlock)completedBlock {
|
|
[self sd_setImageWithURL:url placeholderImage:placeholder options:0 completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, NSURL *imageURL) {
|
|
if (completedBlock) {
|
|
completedBlock(image, error, cacheType);
|
|
}
|
|
}];
|
|
}
|
|
|
|
- (void)setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder options:(SDWebImageOptions)options completed:(SDWebImageCompletedBlock)completedBlock {
|
|
[self sd_setImageWithURL:url placeholderImage:placeholder options:options completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, NSURL *imageURL) {
|
|
if (completedBlock) {
|
|
completedBlock(image, error, cacheType);
|
|
}
|
|
}];
|
|
}
|
|
|
|
@end
|