This question already has an answer here:
- 2 UITableViews in one UIView 5 answers
I have one button and two tableViewControllers
in one view controller. So, if i will press that button 1st table view controller will appear and it will display some data in rows. If i will select any row in that 1st table view controller, the 2nd table view controller will appear and it will need to display the corresponding data of selected row of 1st table view controller. Here we have to use same table view delegate methods for 2 table view controllers at a time in one view controller. Is it possible?
Yes. Since the data source and delegate methods provide a reference to the tableview, you can simply check if it is equal to the first or the second table you have.
Example: