gpt4 book ai didi

ios - 我如何在 IOS 中读取多个数组中的第一项

转载 作者:行者123 更新时间:2023-11-28 22:16:03 25 4
gpt4 key购买 nike

我有这个数组,我需要所有第一个元素。

我只能用这个读一本

vc.ArrayListaFotos = [[listaImagens objectAtIndex:(indexPath.row * 3)] valueForKey:@"Caminho"];

但我无法先读取数组 1,2,3 中的其他元素...

enter image description here

有人可以帮帮我吗?

最佳答案

您使用了错误的引用。你应该这样做:

NSMutableArray *arrayDeImagensParaOProdutoSelecionado = [NSMutableArray arrayWithObjects:nil];
for (NSArray *tempArray in listaImagens) {
if ([[NSString stringWithFormat:@"%@", [tempArray valueForKey:@"idProduto"]] isEqualToString:[NSString stringWithFormat:@"%@", [[produtos objectAtIndex:(indexPath.row * 3)] valueForKey:@"id"]]]) {
[arrayDeImagensParaOProdutoSelecionado addObject:tempArray];
}
}

希望对您有所帮助。

关于ios - 我如何在 IOS 中读取多个数组中的第一项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21648351/

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