Rx-based tree structure with UITableView in Swift

65 Views Asked by At

I want to implement a tree structure by using RxCocoa & RxSwift in a UITableView something like

 Item1
     child1
          child1.1
          child1.2             
     child2
 Item2
 Item3
     child1
     child2
          child2.1
          child2.2
          child2.3

I tried with RxDataSource. RxTableViewSectionedAnimatedDataSource worked when the depth is 1.

Is there anyway to make it infinitely recursive?

0

There are 0 best solutions below