xcode 6将变量存储到NSdictionary中

时间:2015-02-07 11:19:16

标签: arrays xcode nsdictionary storage

我想检查如何在NSDictionary中添加一个int变量并在表视图中显示它。从我在网上研究它只显示如何将字符串添加到nsdictionary但不是变量。感谢大家的帮助。

1 个答案:

答案 0 :(得分:0)

这是守则!要添加元素,您必须使用NSMutableDictionary而不是NSDictionary。

NSMutableDictionary *dict = [[NSMutableDictionary alloc] init];
[dict setValue:[NSNumber numberWithInt:5] forKey:[NSString stringWithFormat:@"%d", 2]];

快乐的编码!