我可以在我的本机 iPhone 应用程序中缓存/存储较大的文件吗
我们正在寻求编写一个应用程序,可以在本地存储来自服务器的短视频和 pdf 以供离线查看。这可能吗?如果是这样,我允许多少存储容量。
那么,我可以下载 1GB 的视频以便稍后在我的应用程序中查看吗?
We are looking to write an app that can locally store short videos and pdfs from the server for offline viewing. Is this possible? If so, how much storage capacity am I allowed.
So, can I pull down 1GB of video to view later in my app?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
注意 iOS 提供单独的临时文件夹、缓存文件夹和文档文件夹进行存储。您应该使用 Temporary 或 Caches 文件夹进行存储,因为与 iTunes 同步时会备份 Documents 文件夹,如果有大文件需要传输,备份速度会非常慢。
Note iOS offers separate Temporary, Cache and Documents folders for storage. You should aim to use the Temporary or Caches folder for storage because the Documents folder is backed up when syncing with iTunes, which is very slow if there are large files to transfer.
是的。您可以将内容存储在 NSUserDefaults 或文件系统中
Yes. You can store things in NSUserDefaults or File System