Looking for expandable tableview to convert my JSON tree structure

Viewed 1473

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
          }
        ]
      }
    ]
  }
}
1 Answers
Related