我正在C ++中找到类C ++的KeyValuePair(即使没有泛型)的Objective C类.只要有一个第一个/第二个对象.我可以创造自己的没有问题,但我想,如果一个已经在那里,那么没有必要重新发明的轮子.我没有任何运气自己找到一个人有没有人知道一个?
解决方法
所以基本上像一个哈姆马斯吧,对吧?
从here的例子:
NSMutableDictionary *dictionary = [[NSMutableDictionary alloc] init]; // Add objects to a dictionary indexed by keys [dictionary setObject:@"A Book about the Letter A" forKey:@"A"]; [dictionary setObject:@"A Book about the Letter B" forKey:@"B"]; [dictionary setObject:@"A Book about the Letter C" forKey:@"C"]; // Retrieve an object from a dictionary with a key NSLog([dictionary objectForKey:@"B"]); // Release a dictionary [dictionary release];