Two TableViews in one View Controller [duplicate]

2019-02-21 19:18发布

This question already has an answer here:

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?

1条回答
太酷不给撩
2楼-- · 2019-02-21 19:50

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
  }
}
查看更多
登录 后发表回答