如何取到AVFile的缓存文件?

对于AVObject来说,设置了query的缓存策略后,可以在下次find时从缓存中读取。
但是AVFile该如何从缓存读呢?
比如,我有一些图像文件(jpg)作为AVFile存在服务器上,首先可以通过objectID找到该文件,而且该文件会被存到缓存中。那么下一次需要该文件时,是否有办法从缓存中找该文件,如果可以的话如何做?

阅读 5.7k
1 个回答

AVFile有如下方法获取文件数据

/*!
 Gets the data from cache if available or fetches its contents from the AVOS Cloud
 servers. Sets an error if it occurs.
 @param error Pointer to an NSError that will be set if necessary.
 @return The data. Returns nil if there was an error in fetching.
 */
- (NSData *)getData:(NSError **)error;
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进