Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UISplitViewController with three controller

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.

like image 280
Thamotharan Avatar asked Nov 05 '22 08:11

Thamotharan


1 Answers

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.

like image 146
Ole Begemann Avatar answered Nov 10 '22 06:11

Ole Begemann