是否可以在 iOS 中将文件本地存储在我们的应用程序之外?

Is it possible to store file locally out side of our app in iOS?

我有很多图像资料需要下载以供日后使用。有什么方法可以在我的应用程序之外存储我的应用程序的图像,以便我的应用程序的内存使用率会很低??

是的,您可以将图像保存到图库:

UIImageWriteToSavedPhotosAlbum(UIImage *image, 
                               id completionTarget, 
                               SEL completionSelector, 
                               void *contextInfo);

完成函数应该如下函数签名:

- (void) image: (UIImage *) image 
         didFinishSavingWithError: (NSError *) error 
         contextInfo: (void *) contextInfo;

阅读 documentation 了解更多信息...