gpt4 book ai didi

ios - 访问数组中的元素时应用程序崩溃

转载 作者:行者123 更新时间:2023-11-28 18:54:26 26 4
gpt4 key购买 nike

我使用以下代码将元素动态添加到数组。

for (response in jsonDic[@"value"][@"options"]){
NSMutableArray *notifyText = [[NSMutableArray alloc]init];
[notifyText addObject: jsonDic[@"value"][@"options"][response]];
NSLog(@"it is%@",notifyText[1]);
}

当我尝试使用 notifyText[1] 访问时,我缺少的逻辑是什么?

最佳答案

您每次都创建了 notifyText 数组,因此每次分配并只添加一个值

请点赞

 NSMutableArray *notifyText = [[NSMutableArray alloc]init];
for (response in jsonDic[@"value"][@"options"]){
[notifyText addObject: jsonDic[@"value"][@"options"][response]];
}
NSLog(@"it is%@",notifyText[1]);

关于ios - 访问数组中的元素时应用程序崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35523629/

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