I have a JSON
file like this:
{
"timeline": {
"Milan": {
"placeA": [
{
"name": "Place 1",
"kind": "historic",
},
{
"name": "Place 2",
"kind": "historic",
},
{
"name": "Place 3",
"kind": "historic",
}
]
},
"Paris": {
"placeB": [
{
"name": "Place 1",
"kind": "historic",
},
{
"name": "Place 2",
"kind": "historic",
}
]
}
}
}
and in my app I need to separate this JSON
and insert into a array like this for separate data with tableView
section:
var arr = [[placeA],[placeB],...]
how can I do that?
P.S I use SwiftyJson