In my ipad app i use a splitviewcontroller. In the right side of the splitvc i need to display tree UITableView but since i can't use a uitabbarcontroller inside splitvc i use only a tabbar. When press a tabbaritem i do this switch:
self.selectedDataSourceAndDelegate = [dataSourcesAndDelegates objectAtIndex:item.tag];
[self.tableView setDelegate:selectedDataSourceAndDelegate];
[self.tableView setDataSource:selectedDataSourceAndDelegate];
change data source and delegate so i can have to manage only one tableview. It makes sense the solution that I have chosen?