将一个 NSDictionary 的数据复制到另一个 NSDictionary 时出现问题

发布于 2024-09-24 02:38:43 字数 277 浏览 3 评论 0原文

您好,我在将数据从一个 NSDictionary 复制到另一个 NSDictionary 时遇到问题,我使用了

[dicForFoodproduct_fromWeb initWithDictionary:dictforfoodproduct];

Here 它终止并显示“无法识别的选择器发送到实例...”我在 dictForFoodProduct 中获取 5 个键值,但无法将该键值复制到 dicForFoodProduct_fromWeb 中。

Hello i am having problem in copying data from one NSDictionary to another i used the

[dicForFoodproduct_fromWeb initWithDictionary:dictforfoodproduct];

Here it terminates and says "unrecognized selecter sent to the instance..." I am getting 5 key values in dictForFoodProduct but am unable to copy that key values into dicForFoodProduct_fromWeb.

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

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

发布评论

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

评论(2

撑一把青伞 2024-10-01 02:38:43
NSDictionary *newDictionary = [[NSDictionary alloc] initWithDictionary:otherDictionary];
NSDictionary *newDictionary = [[NSDictionary alloc] initWithDictionary:otherDictionary];
情域 2024-10-01 02:38:43

[dicForFoodproduct_fromWeb addEntriesFromDictionary: dictforfoodproduct]

这会将现有值替换为 dictforfoodproduct 值。与使用 init 的唯一区别是,它不会删除 dictforfoodproduct 中不存在但在 dicForFoodproduct_fromWeb 中存在的值。

[dicForFoodproduct_fromWeb addEntriesFromDictionary: dictforfoodproduct]

This will replace existing values with the dictforfoodproduct values. Only difference from using an init is that it won't remove values that aren't present in dictforfoodproduct but that are in dicForFoodproduct_fromWeb.

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