gpt4 book ai didi

objective-c - 基于 int 创建多个编号变量

转载 作者:太空狗 更新时间:2023-10-30 03:51:39 26 4
gpt4 key购买 nike

如何使用数组的计数创建多个 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;
}

最佳答案

创建一个可变数组并循环直到达到原始数组的计数,创建一个字典并将其添加到每次迭代的可变数组中。

您的代码应如下所示。

NSMutableArray *dictionaries = [[NSMutableArray alloc] init];
for (int i = 0; i < doesntContainAnother.count; i++) {
[dictionaries addObject:[NSMutableDictionary dictionaryWithObject:[array1 objectAtIndex:i] forKey:[array2 objectAtIndex:i]]];
}

在名称末尾使用数字创建变量的方法是一种反模式,甚至在 Objective-C 中也是不可能的。它相当于一个数组,但更笨重。

关于objective-c - 基于 int 创建多个编号变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2231783/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com