Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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];
share|improve this question

1 Answer

up vote 1 down vote accepted

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

share|improve this answer
Well, It doesn't work... Edited the question. – IssamTP Dec 16 '10 at 15:14
What is bodyView? Check that it is not nil at that point. – Anna Karenina Dec 16 '10 at 15:16
bodyView is the View Controller on the right and it's not nil. It seems that I can't launch this operation in viewDidLoad. – IssamTP Dec 16 '10 at 15:22
Call it in viewDidAppear, or, if you must call it from viewDidLoad, move that code to a method (eg. presentNewPlayerView) and call that method from viewDidLoad using [bodyView performSelector:@selector(presentNewPlayerView) withObject:nil afterDelay:0];. – Anna Karenina Dec 16 '10 at 15:28
Thank you very much – IssamTP Dec 16 '10 at 15:30
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.