...
|
...
|
@@ -184,13 +184,6 @@ typedef void(^SDWebImageCalculateSizeBlock)(NSUInteger fileCount, NSUInteger tot |
|
|
/**
|
|
|
* Remove the image from memory and disk cache asynchronously
|
|
|
*
|
|
|
* @param key The unique image cache key
|
|
|
*/
|
|
|
- (void)removeImageForKey:(nullable NSString *)key;
|
|
|
|
|
|
/**
|
|
|
* Remove the image from memory and disk cache asynchronously
|
|
|
*
|
|
|
* @param key The unique image cache key
|
|
|
* @param completion A block that should be executed after the image has been removed (optional)
|
|
|
*/
|
...
|
...
|
@@ -199,14 +192,6 @@ typedef void(^SDWebImageCalculateSizeBlock)(NSUInteger fileCount, NSUInteger tot |
|
|
/**
|
|
|
* Remove the image from memory and optionally disk cache asynchronously
|
|
|
*
|
|
|
* @param key The unique image cache key
|
|
|
* @param fromDisk Also remove cache entry from disk if YES
|
|
|
*/
|
|
|
- (void)removeImageForKey:(nullable NSString *)key fromDisk:(BOOL)fromDisk;
|
|
|
|
|
|
/**
|
|
|
* Remove the image from memory and optionally disk cache asynchronously
|
|
|
*
|
|
|
* @param key The unique image cache key
|
|
|
* @param fromDisk Also remove cache entry from disk if YES
|
|
|
* @param completion A block that should be executed after the image has been removed (optional)
|
...
|
...
|
|