如何在 NSMutableDictionary 中保留部分分数

Posted

技术标签:

【中文标题】如何在 NSMutableDictionary 中保留部分分数【英文标题】:How to keep partial scores in NSMutableDictionary 【发布时间】:2011-08-19 14:32:11 【问题描述】:

我想将部分分数存储到 NSMutableDictionary 中。对于每个新分数,我想检查密钥是否已存在于我的集合中。如果是,则将分数添加到现有分数中。如果没有创建字典的新条目。这在 Delphi 中很容易,但我在 Objective-C 中遇到了麻烦。键和值是 NSInteger。我怎样才能做到这一点?像这样?:

if ([target_results objectForKey:[NSNumber numberWithInteger:temp]])

   //add to existing
   [target_results setObject:[NSNumber numberWithInteger:incoming_score + (...existing value...)] forKey:[NSNumber numberWithInteger:myKeyValue]];

 
 else
 
    //new entry
    (???)
 

【问题讨论】:

【参考方案1】:

使用 NSMutableDictionary 并向其发送 setValue: forKey: message:

NSMutableDictionary *target_results;

[target_results setValue:incoming_score forKey:forKey:[NSNumber numberWithInteger:myKeyValue]]

【讨论】:

这不会将传入的分数添加到现有分数中。

以上是关于如何在 NSMutableDictionary 中保留部分分数的主要内容,如果未能解决你的问题,请参考以下文章

我们如何在 NSMutableArray 中添加带有 Image 作为对象的 NSMutableDictionary 并将这个数组写入 Plist

如何更新 NSMutableDictionary?

如何在 NSMutableArray* 或 NSMutableDictionary* 中存储“int”值?以整数形式出现的 JSON 数据的长期问题。

如何从两个 plist 中添加 NSMutableDictionary 中的信息?

如何将 NSMutableDictionary 写入 Plist

如何将 NSArray 添加为 NSMutableDictionary 的 NSMutableDictionary 键?