iphone - 如何知道应用程序使用的存储大小?

发布于 2024-11-18 09:37:38 字数 169 浏览 7 评论 0原文

我的应用程序正在缓存内容,以便用户可以在离线时阅读。

我将缓存的所有内容写入 iPhone 中的数据库文件(使用 CoreData)。

然而,iPhone 中的存储空间是有限的。所以我想控制我的应用程序正在使用的磁盘大小。

如何查看我正在使用的磁盘大小?

谢谢

My app is caching content so that user can read it when offline.

I wrote everything of the cache into a database file (using CoreData) in iPhone.

However, the storage size is limited in iphone. So I would like to control the disk size my app is using.

How can I check the disk size I am using?

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

少跟Wǒ拽 2024-11-25 09:37:38

最简单、最准确的解决方案是直接检查持久存储的大小。

使用 -[NSFileManager attributeOfItemAtPath:error:] ,然后使用返回字典的 fileSize 键。

The simplest and most accurate solution is to check the size of the persistent store directly.

Use -[NSFileManager attributesOfItemAtPath:error:] and then the fileSize key of the returned dictionary.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文