I have a viewcontroller in that i want to show 3 tableviews(because the content and the table properties are different). How do i add these delegat
viewcontroller
tableviews
//add tag in tableView . myTable1.tag = 200; myTable2.tag = 201; myTable3.tag = 202; - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { if (tableView.tag == 200) { return 1; } if (tableView.tag == 201) { return 1; } if (tableView.tag == 202) { return 1; } }