Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Two TableViews in one View Controller [duplicate]

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?

like image 721
RameshIos Avatar asked Feb 17 '14 17:02

RameshIos


1 Answers

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:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
  if ([tableView isEqual:_firstTable]) {
    // Do something
  }

  else { // tableView == _secondTable
    // Do something else
  }
}
like image 133
Guilherme Avatar answered Oct 02 '22 18:10

Guilherme