Add use of rx_itemAccessoryButtonTapped to simple table view example
This commit is contained in:
parent
08a3161354
commit
87b36ffb0d
|
|
@ -38,5 +38,13 @@ class SimpleTableViewExampleViewController : ViewController {
|
|||
DefaultWireframe.presentAlert("Tapped `\(value)`")
|
||||
}
|
||||
.addDisposableTo(disposeBag)
|
||||
|
||||
tableView
|
||||
.rx_itemAccessoryButtonTapped
|
||||
.subscribeNext { indexPath in
|
||||
DefaultWireframe.presentAlert("Tapped Detail @ \(indexPath.section),\(indexPath.row)")
|
||||
}
|
||||
.addDisposableTo(disposeBag)
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue