Reputation: 1273
I want to convert my below JSON tree structure to expandable tableview. JSON tree can be changed dynamically from a server, which can contain Childs up to multiple internal levels.
{
"Tree": {
"node": [
{
"node": [
{
"node": null
},
{
"node": [
{
"node": null
}
]
}
]
},
{
"node": [
{
"node": null
},
{
"node": null
},
{
"node": null
}
]
}
]
}
}
Upvotes: 5
Views: 1610
Reputation: 3195
I recommend KJExpandableTableTree library if you want to create dynamic tree
structure using JSON
in UITableview.
Upvotes: 4