views:

52

answers:

1

Hi Friends,

I am working with developing an iPad application. In that i have to display two table views and one web view in a single view. UISplitViewController allows to add two controller only. Please any one help me.

+2  A: 

UISplitViewController cannot be configured to use more than 2 sections. If you want to have this functionality in a view controller, you have to write your own. Matt Gemmell's open-source MGSplitViewController might be a good place to start your coding.

Of course, you can also just add the three views as subviews to a plain UIViewController subclass.

Ole Begemann