Как мне создать число переменных NSDictionary
, используя подсчет массива?
Это в основном то, что я придумал, но я не уверен, как сделать эту работу синтаксисом Objective-C. doesntContainAnother
является NSArray
. Я хочу, чтобы имена словарей использовали текущее значение loopInt
.
int *loopInt = 0;
while (doesntContainAnother.count <= loopInt) {
NSMutableDictionary *[NSString stringWithFormat:@"loopDictionary%i", loopInt] = [[[NSMutableDictionary alloc] init] autorelease];
[NSString stringWithFormat:@"loopDictionary%i", loopInt] = [NSDictionary dictionaryWithObject:[array1 objectAtIndex:loopInt]
forKey:[array2 objectAtIndex:loopInt]];
loopInt = loopInt + 1;
}