如何更新 NSDictionary 中的键?

发布于 2024-12-21 13:11:21 字数 527 浏览 0 评论 0原文

我有一个 NSArray

我想更改存储在数组中的字典

我的 data.plist 看起来像:

data Array
   Item 0 Dictionary
       imagename String
       name String
       text String
       url String
   Item 1 Dictionary
       imagename String
       name String
       text String
       url String
   Item 2 Dictionary
       imagename String
       name String
       text String
       url String

所以我想更新密钥 imagename所有项目中的 > 和 name

我怎样才能做到这一点?

I have an NSArray

I want to make changes to a dictionary stored in the array

My data.plist looks like:

data Array
   Item 0 Dictionary
       imagename String
       name String
       text String
       url String
   Item 1 Dictionary
       imagename String
       name String
       text String
       url String
   Item 2 Dictionary
       imagename String
       name String
       text String
       url String

So I want to update key imagename and name in all items.

How can I do that?

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

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

发布评论

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

评论(1

晒暮凉 2024-12-28 13:11:21

这应该可以做到。

-(void)updateKey:(id)newKey oldKey:(id)oldKey atIndex:(int)index {
    [[_myArray objectAtIndex:index] removeObjectForKey:oldKey];
    [[_myArray objectAtIndex:index] setObject:forObject forKey:newKey]; 
}

This should about do it.

-(void)updateKey:(id)newKey oldKey:(id)oldKey atIndex:(int)index {
    [[_myArray objectAtIndex:index] removeObjectForKey:oldKey];
    [[_myArray objectAtIndex:index] setObject:forObject forKey:newKey]; 
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文