LOTCacheProvider.m 327 B

1234567891011121314151617181920212223
  1. //
  2. // LOTCacheProvider.m
  3. // Lottie
  4. //
  5. // Created by punmy on 2017/7/8.
  6. //
  7. //
  8. #import "LOTCacheProvider.h"
  9. @implementation LOTCacheProvider
  10. static id<LOTImageCache> _imageCache;
  11. + (id<LOTImageCache>)imageCache {
  12. return _imageCache;
  13. }
  14. + (void)setImageCache:(id<LOTImageCache>)cache {
  15. _imageCache = cache;
  16. }
  17. @end