1

I am using SwiftBond to bind tableview. I want to have index list in my tableview but i have no idea of how to implement it.

I want to use few more data source methods of tableview but i am not having exact idea of the correct way to do it. Any help ?

Alap Anerao
  • 2,083
  • 22
  • 27

1 Answers1

0

I achieved it by implementing BNDTableViewProxyDataSource.

And I need to pass instance of BNDTableViewProxyDataSource when i bind tableview using bindTo method.

Alap Anerao
  • 2,083
  • 22
  • 27
  • @"Alap Anerao" do you know how to do this using SwiftBond v5? `BNDTableViewProxyDataSource` is gone in v5. The closest I got is using `tableView.bnd_dataSource.forwardTo = self` to redirect the data source back to my view controller, but then I also need to implement the required methods of `UITableViewDataSource` in my view controller and I'm stuck there – Lubo Dec 08 '16 at 08:31