Plz guide that how can i use 2 UItableView(or more) in a UIViewController & manage their
numberOfRowsInSection,......& other methods.
Any ideas for that
// tableView parameter is the tableView for which the delegate method is called // u can compare this with your table view references - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { if (tableView == myTableView1) { // return data for myTableView1 } else if (tableView == myTableView2) { // return data for myTableView2 } }