Reputation: 5616
Just looking for some advice. What is the best way to present a full screen modal view controller from a UISplitViewController (set as the root) ?
Upvotes: 1
Views: 1420
Reputation: 42594
Do you know how to make a full screen controller?
Do you know how to present a modal view controller?
Are you having any problem combining the two?
Try it and if you have a specific problem ask about that.
Upvotes: 0
Reputation: 14672
There's no difference presenting a modal view controller from a UISplitViewController
that from any other UIViewController
.
You simply call - (void)presentModalViewController:(UIViewController *)modalViewController animated:(BOOL)animated
.
Upvotes: 2