在 NSDictionary 中操作数组

发布于 2025-01-05 10:02:30 字数 512 浏览 1 评论 0原文

我尝试直接操作 NSMutableDictionary 中的数组:

[[myDictionary objectForKey: @"key"] addObject: object];

这不起作用!我什至尝试过类型转换:

[(NSMutableArray*)[myDictionary objectForKey: @"key"] addObject: object];

这也不起作用!

唯一有效的方法是:

NSMutableArray *array = [myDictionary objectForKey: @"key"];
[array addObject: object];
[myDictionary setObject: array forKey: @"key"]

有没有一种方法可以像第一个代码片段一样操作字典中的数组?即无需创建新数组、操作它然后保存它?

I tried to manipulate an array in an NSMutableDictionary directly:

[[myDictionary objectForKey: @"key"] addObject: object];

This doesn't work! I even tried type casting:

[(NSMutableArray*)[myDictionary objectForKey: @"key"] addObject: object];

This didn't work either!

The only way that worked was:

NSMutableArray *array = [myDictionary objectForKey: @"key"];
[array addObject: object];
[myDictionary setObject: array forKey: @"key"]

Is there a way to manipulate the array in the dictionary similar to the first code snippet; i.e. without having to create a new array, manipulating it and then saving it?

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

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

发布评论

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

评论(2

↙厌世 2025-01-12 10:02:30

您是否有机会从文件或 URL 加载 NSDictionary ?来自 API 文档:“即使字典是可变的,该字典包含的对象也是不可变的。”

Are you loading the NSDictionary from a file or URL by any chance? From the API docs: "The objects contained by this dictionary are immutable, even if the dictionary is mutable."

晨光如昨 2025-01-12 10:02:30

问题是我没有在 NSMutable 字典中分配数组,即在添加对象之前使用以下代码:

[myDictionary addObject: [[NSMutableArray alloc]init] forKey: @"key"];

The problem was that I wasn't allocation the array within the NSMutable Dictionary i.e. before adding objects use the following code:

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