避免在 iphone sdk 的 NSMutableDictionary 中添加相同的密钥?

发布于 2024-12-13 00:41:38 字数 84 浏览 0 评论 0原文

我通过元素名称作为键在 NSMutableDictionary 中添加 xml 数据。我如何检查 当我再次添加相同的键而无需循环时,该键在字典中已经可用?

i add xml data in NSMutableDictionary through element name as key.How can I check
that the key is already available in dictionary when i add the same key again without loop?

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

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

发布评论

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

评论(2

尬尬 2024-12-20 00:41:39

试试这个:

([myDictionary objectForKey:@"my key"] == nil)

如果键不存在,objectForKey 将返回 nil。

try this:

([myDictionary objectForKey:@"my key"] == nil)

objectForKey will return nil if a key doesn't exists.

如若梦似彩虹 2024-12-20 00:41:39

如果你向字典询问带有该键的对象,如果没有找到,它将返回 nil。

if([yourDictionary objectForKey:@"yourKey"] == nil){
  //Do stuff when yourKey is not in the dictionary yet
}

或者,如果您不关心以前的值会发生什么,我认为您可以使用

[yourDictionary setObject:someObject forKey:someKey]

而不是向字典添加对象。

If you ask the dictionary for the object with that key it will return nil if it is not found.

if([yourDictionary objectForKey:@"yourKey"] == nil){
  //Do stuff when yourKey is not in the dictionary yet
}

Or, if you don't care what happens to the previous value I think you could use

[yourDictionary setObject:someObject forKey:someKey]

instead of adding objects to the dictionary.

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