I added this to my code when im initializing the movie

[m_pMPmpc.moviePlayer setControlStyle:MPMovieControlStyleNone];

where m_pMPmpc is an MPMoviePlayerViewController

It worked fine but then I noticed that the movie doesnt rotate anymore while playing(but the app after the movie still rotates) but it detects the orientation at the start and follows that.

I need to set it to follow the landscape orientations while playing. Any idea on what code to add?

link|improve this question
feedback

1 Answer

Try creating a class child of MPMoviePlayerViewController and overriding the shouldAutorotateToInterfaceOrientation to return yes when orientation is landscape. Instance your class instead the default MPMoviePlayerViewController.

It works for me.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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