I have an iPad application with a SplitViewController in which the DetailView has a UIButton. What I want to know is, is it possible to show another SplitViewController on pressing that button? I couldn’t see such a functionality implemented by anyone, after lots of Googling around.
Thank you.
Thanks for the response everyone. I got the solution for the same.
What I did was I created a
UIViewController(for Detail page) and aUITableViewController(for Master Page). By implementingUIPopoverControllerDelegate&UISplitViewControllerDelegatein detail page , I linked up both of them(detail & master) by making the splitviewcontroller the root view controller of Detail Page.Basic split view functions and popover functions are to be implemented. You will have to manually adjust the size of the MasterPopoverView.