1234567891011121314151617181920212223 |
- //
- // LOTCacheProvider.m
- // Lottie
- //
- // Created by punmy on 2017/7/8.
- //
- //
- #import "LOTCacheProvider.h"
- @implementation LOTCacheProvider
- static id<LOTImageCache> _imageCache;
- + (id<LOTImageCache>)imageCache {
- return _imageCache;
- }
- + (void)setImageCache:(id<LOTImageCache>)cache {
- _imageCache = cache;
- }
- @end
|