MOBFImageCachePolicy.h 703 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // MOBFImageCachePolicy.h
  3. // MOBFoundation
  4. //
  5. // Created by 冯鸿杰 on 2017/4/12.
  6. // Copyright © 2017年 MOB. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "MOBFImageServiceTypeDef.h"
  10. @interface MOBFImageCachePolicy : NSObject
  11. /**
  12. 缓存名称,用于对不同的图片缓存划分到不同的缓存路径中,如果名称相同则缓存位置相同。
  13. */
  14. @property (nonatomic, copy) NSString *cacheName;
  15. /**
  16. 缓存处理回调,当有图片需要进行缓存时会先调用该方法
  17. */
  18. @property (nonatomic, strong) MOBFImageGetterCacheHandler cacheHandler;
  19. /**
  20. 获取默认的缓存策略
  21. @return 缓存策略
  22. */
  23. + (instancetype)defaultCachePolicy;
  24. @end