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?

link|improve this question

73% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.