Yes, I know Apple doesn't want to do that, but I want to do.
I want to use another UISplitViewController
as modal view controller.
I found some solutions by googling,
make your own
UISplitViewController
yes! it's simple and some already implemented it.
use one
UISplitViewController
, and change itsviewControllers
propertyviewControllers
property have to managed by stack, like UINavigationController does.make another
UIViewController
, and assign its view property that is from UISplitViewControllerI made
MyViewController
, and it hasUISplitViewController
instance from nib (or code)in
viewDidLoad
inMyViewController
:self.view = splitViewController.view
and I'm using
MyViewController
as modal view controller.It shows
UISplitViewController
well, butUISplitViewControllerDelegate
doesn't work because it is not root view controller.
any more suggestions, or which way do you recommend, friends?