I am working with the universal apps. Now i want to create a three table views in my view controller for iPAD. I have three separate view controllers with XIB.So how can i add the other two table view as subview in the main controllers. Please give me some sample applications and links. In my application, i have three view controllers and add a subview as table view(not UITableViewController). On clicks the first table view data, it navigates to the second table and clicks the second table view data, it navigates to the third table view.
Hierarchy:
MainViewController:
--SubTableView1
--SubTableView2
See the image below,

Please Help me out.
Thanks!!
A table view is just a view you can use. It doesn’t have to be bound 1:1 to a view controller, but if it’s not, you need to set up the custom single view controller that owns the screen, and then get it to own all three table views as subviews. You need to be careful about which object is the delegate and data source of each views, and do the right thing with providing cells, etc. If the same controller is the delegate/data source of all the table views, you have to switch in the delegate methods to do the right thing on each.