I want to convert my bottom JSON tree structure to an extensible tableview. The JSON tree can be dynamically changed from a server, which can contain children to several internal levels.
{
"Tree": {
"node": [
{
"node": [
{
"node": null
},
{
"node": [
{
"node": null
}
]
}
]
},
{
"node": [
{
"node": null
},
{
"node": null
},
{
"node": null
}
]
}
]
}
}
source
share