我可以在NSMutableDictionary中使用NSArray吗?

时间:2011-07-18 23:26:59

标签: iphone objective-c arrays xcode

我很想知道在声明变量的值时是否可以在NSMutableDictionary中使用NSArray。因为我编写的应用程序需要多个变量实例来等于大约四或五个浮点数。我不想写它像:

- (void)buildKeyMapping {
self.keyMapping = [[NSMutableDictionary alloc] initWithCapacity:9];
[keyMapping setObject:[NSNumber numberWithFloat:466.7] forKey:@"c1"];
[keyMapping setObject:[NSNumber numberWithFloat:494.4] forKey:@"c2"];
[keyMapping setObject:[NSNumber numberWithFloat:523.8] forKey:@"c3"];
[keyMapping setObject:[NSNumber numberWithFloat:415.8] forKey:@"c4"];
[keyMapping setObject:[NSNumber numberWithFloat:440.5] forKey:@"c5"];

我确信有一种方法可以为一个变量声明一组值,但我是这个语言的初学者,我希望得到一些帮助。有什么提示吗?

1 个答案:

答案 0 :(得分:5)

是。对于NSObjectNSArray,您可以使用NSMutableArray的任何子类,包括NSDictionaryNSMutableDictionary