使用以下代码时,我遇到了一个问题,即它没有更改为纵向模式:
NSString *url = @"http://abc.com/movie.3gp"; MPMoviePlayerController *moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:[NSURL URLWithString:url]]; moviePlayer.scalingMode = MPMovieScalingModeAspectFill; // seen nothing change when comment this line if([moviePlayer respondsToSelector:@selector(setOrientation:animated:)]) [moviePlayer setOrientation:UIDeviceOrientationPortrait animated:NO]; [moviePlayer play];
我的代码有问题吗?任何人都可以解决我的问题或任何替代方案?
感谢。
答案 0 :(得分:2)
您希望此代码有效吗? MPMoviePlayerController
未记录为setOrientation
方法...
我认为没有办法实现这一目标。