Trove is an iOS framework that provides an intelligent, transparent local cache of rich media web assets. You know, for those precious offline moments when users don't have Internet connectivity but just can't stop using your app.
- Foundation.framework
- Trove.framework
- Reachability.h (included in the example project and found here)
NSString *sampleURL = @"http://foo.org/fooBar.mp4";
[[Trove sharedInstance] cacheAsset:[NSURL URLWithString:sampleURL]];
This method will return the locally stored file URL, if it is not in the cache directory, the original asset URL will be returned.
NSString *sampleURL = @"http://foo.org/fooBar.mp4";
[[Trove sharedInstance] assetURL:[NSURL URLWithString:sampleURL]];
- (void)assetDownloadSuccessful:(NSURL*)assetPath;
- (void)assetDownloadFailed:(NSError*)error;
Trove was developed by Michael Seifollahi and Mikhail Sinanan. Nifty name "Trove" by Irakli Nadareishvili.
Follow NPR Tech on Twitter (@NPRTechTeam)
Code is licensed under MIT License Terms.