Hi I have a view that contains 2 tableviews.
For a single view I know this delegate method can help me fill content of each row
- (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
But since I have 2 tableviews, how can I refer to each of them and fill content separately?
Thanks for helping!