I am writing an iPad app in XCode 4 and would like to create a UISplitViewController instance that displays its viewController references horizontally on the screen. I have been referring to the XCode example provided by Apple (SplitViews) but that example uses a xib to embed two horizontal NSTextViews manually created by the developer.
Is there a way to force a split view to display horizontally using the standard XCode libraries? I've seen a few references to Matt Gemmell's MGSplitViewController class but I am wondering if this can be done using just XCode's standard libraries.
I've also read the thread concerning programmatic split views (here) but there is no mention of forcing the display to horizontal vs. vertical.