这是写入还是读取数组?

发布于 2024-09-24 10:41:57 字数 187 浏览 2 评论 0原文

[[NSUserDefaults standardUserDefaults] setObject:myArray forKey:@"myArray"];

我试图弄清楚如何使用 NSUser Defaults 保存和加载数组。我已经定义了 NSCoding 委托方法,只需要知道要执行的实际命令将调用这些方法。

[[NSUserDefaults standardUserDefaults] setObject:myArray forKey:@"myArray"];

I'm trying to figure out how to save and load an array using NSUser Defaults. I already have the NSCoding delegate methods defined, just need to know the actual commands to execute that will call those methods.

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

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

发布评论

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

评论(1

终弃我 2024-10-01 10:41:57

发布的代码存储数组:

在您的情况下,您需要使用 -setObject:forKey: 存储它并使用 -arrayForKey: 检索它。

The posted code stores the array:

In your case you'll want to store it using -setObject:forKey: and retrieve it using -arrayForKey:.

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