GuybrushThreepwood
GuybrushThreepwood

Reputation: 5616

Presenting full screen modal views from a UISplitView?

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

Answers (2)

Erik B
Erik B

Reputation: 42594

  1. Do you know how to make a full screen controller?

  2. Do you know how to present a modal view controller?

  3. Are you having any problem combining the two?

Try it and if you have a specific problem ask about that.

Upvotes: 0

gcamp
gcamp

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

Related Questions