Reputation: 2440
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
Reputation:
Yes, just call presentModalViewController:animated:
from any view controller.
Upvotes: 1