Plz guide that how can i use 2 UItableView(or more) in a UIViewController & manage their
numberOfRowsInSection,......& other methods.
Any ideas for that
Assuming that your actual problem lies in assigning the same object as UITableViewDelegate:
UITableViewDelegete methods pass the UITableView instance to it. You just need to filter out which tableview you need to operate on. For example:
- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath {
if (tableView == yourFirstTableView) {
// ...
} else if (tableView == yourSecondTableView) {
// ...
}
}