gpt4 book ai didi

ios - 从数组中的字典中获取数据并将其放入自定义单元格

转载 作者:行者123 更新时间:2023-11-29 12:29:02 25 4
gpt4 key购买 nike

我有一个这样的数组

arr是主数组的名字

{
[
name="";
place={"x1","x2"}
],
[
name="";
place={"y1","y2"}
]
}

我必须从字典中的键值“place”的数组中获取数据,并将其放入具有标签 label1 和 label2 的 TableView 的单元格中..

self.label1.text=[arr objectAtIndex:[indexPath.row]]valueforkey:@"name"]];
self.label2.text=[[[arr objectAtIndex:[indexPath.row]]valueforkey:@"place" objectAtIndex[indexPath.row]];

请告诉我这能正常工作吗

谢谢

最佳答案

使用“现代”下标语法和中间值的示例。

你应该可以替换这个:

self.label1.text=[arr objectAtIndex:[indexPath.row]]valueforkey:@"name"]];
self.label2.text=[[[arr objectAtIndex:[indexPath.row]]valueforkey:@"place" objectAtIndex[indexPath.row]];

使用“现代语法”:

self.label1.text = arr[indexPath.row][@"name"];
self.label2.text = arr[indexPath.row][@"place"][indexPath.row];

或者更好:

NSUInteger row = indexPath.row;
self.label1.text = arr[row][@"name"];
self.label2.text = arr[row][@"place"][row];

关于ios - 从数组中的字典中获取数据并将其放入自定义单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28308199/

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