从 NSKeyedArchvier 中删除数据

发布于 2024-11-03 08:52:47 字数 149 浏览 0 评论 0原文

我正在使用 NSKeyedArchiver 存储数据。当用户退出我的应用程序时,我想清除我存储的所有数据。我该如何去做呢? [NSKeyedUnarchiver unarchiveObjectWithFile:] 似乎没有删除该文件。

谢谢!

I am storing data with NSKeyedArchiver. When a user logs out of my app, I would like to clear all the data that I have stored. How can I go about doing that? It doesn't appear that [NSKeyedUnarchiver unarchiveObjectWithFile:] removes the file.

Thanks!

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

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

发布评论

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

评论(1

从此见与不见 2024-11-10 08:52:47

NSKeyedArchiver & NSKeyedUnarchiver 仅对您的对象进行编码和解码,以便可以存储和检索它们。如果您将数据存储在文件中,只需删除该文件(使用 NSFileManager )。如果您将数据存储在其他位置(例如 NSUserDefaults、数据库等),那么您需要删除适合存储的数据。

NSKeyedArchiver & NSKeyedUnarchiver only encode and decode your objects so they can be stored and retreived. If you are storing the data in a file, just delete the file (use NSFileManager). If you are storing data in other places (eg NSUserDefaults, a database, etc) then you need to delete the data as appropriate for the store.

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