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
}
]
}
]
}
}