【发布时间】:2016-03-09 17:02:47
【问题描述】:
我尝试了很多方法,但我无法从 Something 数组中获取数据并根据 indexPath 在 UITableView 中显示它。
something 如下回复
{
"results": [
{
"Something": [
[
{
"airV": "LX",
"class": "Y"
}
]
],
},
{
"Something": [
[
{
"airV": "FZ",
"class": "Y"
}
],
[
{
"airV": "FZ",
"class": "Y"
}
]
],
},
],
}
注意:something array [] ->>> 包含许多数组。循环something 数组我想得到"airV": "LX","class": "Y"
airv,进入TableView
【问题讨论】:
-
用您的尝试更新您的问题并解释您遇到的问题。
-
我可以从单个数组 [something] 中获取数据,但我想循环多个 [something] 数组并使用基于索引的 arv、class 在 tableview 中显示数据
标签: ios objective-c json xcode ios9