I want to make a UISplitViewController in portrait mode just like in the Settings app. How can I do it?

link|improve this question

Duplicate. See stackoverflow.com/questions/2631672/… – Kristopher Johnson Apr 26 '10 at 14:33
Thanks! I'll try to try this method blog.blackwhale.at/2010/04/… – Knodel Apr 26 '10 at 14:44
feedback

2 Answers

up vote 4 down vote accepted

A bit late, but also take a look at the MGSplitViewController by Matt Gemmel. It does what you need and so much more. It's what UISplitViewController should be, and it's a snap to implement.

link|improve this answer
feedback

From the UISplitViewController class documentation:

A split view controller supports the same interface orientations as its currently visible child view controllers. Both view controllers are displayed in landscape orientations but only the detail view controller is displayed in portrait orientations. When transitioning between orientations, the split view controller sends messages to its delegate object to coordinate the display of a popover with the hidden view controller. For more information on the methods of this delegate object, see UISplitViewControllerDelegate Protocol Reference.

(Emphesis added.)

link|improve this answer
1  
The settings app isn't a split view controller. It's an awful mess of black-magic and it's not clear to me that Apple would allow an app that did that into the store. Caveat Developor! ;) – Olie Jun 7 '10 at 5:34
Yes, but this isn't helpful. OP cites a totally reasonably example of a UI that has a split portrait view and asks how to accomplish it. Saying "it's impossible" argues with the evidence, even if the technique is either undocumented or must be built from scratch. – quixoto Jun 7 '10 at 5:35
There is no evidence of a UISplitViewController in portrait mode -- that's what I'm saying. It's done with javascript and it's a terrible mess. And my answer IS helpful because if OP is thinking of submitting such an app, it is likely to get rejected. "Non standard UI", and all that. (Yes, yes, I understand the hypocrisy.) I'll try to find the link to the how-to-do-it in js & post it, but "you'll be sorry!" ;) – Olie Jun 8 '10 at 0:03
Heh, in searching for the OTHER url, I ran across this SO question: stackoverflow.com/questions/2631672/… Which has a good answer, including sample code. – Olie Jun 8 '10 at 0:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.