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