Reputation: 129
How can i resize the entire SplitViewController? Smaller then the full screen representation. I want to do a representation like registration in The Daily newspaper App.
Upvotes: 1
Views: 719
Reputation: 16714
I believe that you have to implement your own version of the UISplitViewController. One popular alternative is MGSplitViewController.
Upvotes: 3
Reputation: 5154
UISplitViewController has to be the RootViewController (there's a nice explanation of why on this question), and I don't think you can resize it. You would need to create your own class that implements the functionality you want to have a modal-type UISplitViewController, which is what I think The Daily has done.
Upvotes: 0