Reputation: 2167
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?
Upvotes: 0
Views: 64