diff --git a/RxExample/RxExample/Examples/SimpleTableViewExample/SimpleTableViewExampleViewController.swift b/RxExample/RxExample/Examples/SimpleTableViewExample/SimpleTableViewExampleViewController.swift index 4b1b093f..33206ed0 100644 --- a/RxExample/RxExample/Examples/SimpleTableViewExample/SimpleTableViewExampleViewController.swift +++ b/RxExample/RxExample/Examples/SimpleTableViewExample/SimpleTableViewExampleViewController.swift @@ -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) + } } \ No newline at end of file