You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
0 B

2 years ago
//
// MOBFImageCachePolicy.h
// MOBFoundation
//
// Created by 冯鸿杰 on 2017/4/12.
// Copyright © 2017年 MOB. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "MOBFImageServiceTypeDef.h"
@interface MOBFImageCachePolicy : NSObject
/**
*/
@property (nonatomic, copy) NSString *cacheName;
/**
*/
@property (nonatomic, strong) MOBFImageGetterCacheHandler cacheHandler;
/**
@return
*/
+ (instancetype)defaultCachePolicy;
@end