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];