up vote 0 down vote favorite

Hello,

I would like to know if it's possible to have a MoviePlayer in portrait mode.

Thanks for your help.

T.

link|flag

53% accept rate

3 Answers

up vote 2 down vote
@interface MPMoviePlayerController (extend)
-(void)setOrientation:(int)orientation animated:(BOOL)value;
@end

moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:movieUR];
[moviePlayer setOrientation:UIDeviceOrientationPortrait animated:NO];
if (moviePlayer)
{
        [self.moviePlayer play];
}

Implement above code. You will get what you want.

Hope that helps.

Sagar.

Check out following question. It has the same solutions.

http://stackoverflow.com/questions/1422930/playing-video-in-custom-size-screen-view-in-iphone

link|flag
my app was rejected with this extension. =\ – mOlind Aug 16 at 9:20
I think you didn't gone through my answer. please check out my given link in answer I point out. It is mentioned there that it will be rejected. – sugar Aug 16 at 12:17
up vote 2 down vote

if you use "[moviePlayer setOrientation:UIDeviceOrientationPortrait animated:NO]; " API your application will be rejected from Apple Store

link|flag
up vote 1 down vote

You can. See Erica Sadun's article at http://blogs.oreilly.com/iphone/2008/11/the-joys-of-vertical-audio.html. But note that the method for doing so is undocumented by Apple and therefore not recommended.

link|flag

Your Answer

get an OpenID
or
never shown

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