34 lines
1.1 KiB
Objective-C
34 lines
1.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 <Foundation/Foundation.h>
|
|
#import "SDImageCacheDelegate.h"
|
|
|
|
@interface SDImageCache : NSObject
|
|
{
|
|
NSMutableDictionary *memCache;
|
|
NSString *diskCachePath;
|
|
NSOperationQueue *cacheInQueue, *cacheOutQueue;
|
|
}
|
|
|
|
+ (SDImageCache *)sharedImageCache;
|
|
- (void)storeImage:(UIImage *)image forKey:(NSString *)key;
|
|
- (void)storeImage:(UIImage *)image forKey:(NSString *)key toDisk:(BOOL)toDisk;
|
|
- (void)storeImage:(UIImage *)image imageData:(NSData *)data forKey:(NSString *)key toDisk:(BOOL)toDisk;
|
|
- (UIImage *)imageFromKey:(NSString *)key;
|
|
- (UIImage *)imageFromKey:(NSString *)key fromDisk:(BOOL)fromDisk;
|
|
- (void)queryDiskCacheForKey:(NSString *)key delegate:(id <SDImageCacheDelegate>)delegate userInfo:(NSDictionary *)info;
|
|
|
|
- (void)removeImageForKey:(NSString *)key;
|
|
- (void)clearMemory;
|
|
- (void)clearDisk;
|
|
- (void)cleanDisk;
|
|
- (int)getSize;
|
|
|
|
@end
|