Tag: 变量名称

基于int创建多个编号的变量

我将如何使用数组的数量创建一些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; }