IssamTP
IssamTP

Reputation: 2440

UISplitViewController And ModalView

I'd like to know simply if it is possible to present a modal view controller in an iPad application that is using the UISplitView Controller. Thank You

EDIT:

This is the code:

NewPlayerViewController *newPlayerView;

newPlayerView = [[NewPlayerViewController alloc] initWithNibName:@"NewPlayerViewController" bundle:nil];
[newPlayerView setModalTransitionStyle:UIModalTransitionStyleCrossDissolve];
[bodyView presentModalViewController:newPlayerView animated:YES];

[newPlayerView release];

Upvotes: 0

Views: 682

Answers (1)

user467105
user467105

Reputation:

Yes, just call presentModalViewController:animated: from any view controller.

Upvotes: 1

Related Questions