我有一个MPMoviePlayer工作。它旨在将邮资大小的电影显示为视图中的子视图。当手机旋转为横向时,它将进入全屏模式。当手机处于人像状态时,它会进入邮票肖像模式。
唯一的问题是当我在横向模式下按完成时,它会保留在风景中,带有邮票大小的电影,而不是放回到肖像中。
以下是我的一些代码:
-(void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {
if (toInterfaceOrientation == UIInterfaceOrientationLandscapeRight || toInterfaceOrientation == UIInterfaceOrientationLandscapeLeft) {
[moviePlayerController setFullscreen:YES animated:YES];
} else
{
[moviePlayerController setFullscreen:NO animated:YES];
}
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return interfaceOrientation == UIInterfaceOrientationLandscapeRight || interfaceOrientation == UIInterfaceOrientationPortrait || interfaceOrientation == UIInterfaceOrientationLandscapeLeft;
}
按完成后如何让它进入肖像模式?
答案 0 :(得分:2)
@cannyboy ...如果您的应用程序仅适用于纵向模式,您只需在APPDelegate.m中使用以下方法
- (NSUInteger) application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window {
if ([[window.rootViewController presentedViewController] isKindOfClass:[MPMoviePlayerViewController class]])
{
//NSLog(@"in if part");
return UIInterfaceOrientationMaskAllButUpsideDown;
}
else
{
//NSLog(@"in else part");
return UIInterfaceOrientationMaskPortrait;
}}
答案 1 :(得分:1)
我是同样的问题,现在我告诉你我是如何解决它的。我不知道下面的方法是对还是错,但它工作正常。
MPMoviePlayer
而不是在新的viewController
中打开它。我的意思是创建一个新的UIViewController
来显示电影并将其推送到某个用户不会理解他们将重定向到新屏幕的方式。MovieViewController
横向显示。pop
viewController
和前一个屏幕不支持横向模式,因此屏幕将自动以纵向模式显示。 答案 2 :(得分:0)
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(_moviePlayerWillExitFullscreen:)
name:MPMoviePlayerWillExitFullscreenNotification object:nil];
- (void)_moviePlayerWillExitFullscreen:(NSNotification *)notification
{
CGFloat ios = [[[UIDevice currentDevice] systemVersion] floatValue];
CGFloat min = 5.0;
if (ios >= min)
{
if (self.interfaceOrientation != UIInterfaceOrientationPortrait)
{
if([self shouldAutorotateToInterfaceOrientation:UIInterfaceOrientationPortrait])
{
[[UIDevice currentDevice] setOrientation:UIInterfaceOrientationPortrait];
[self willRotateToInterfaceOrientation:self.interfaceOrientation duration:0];
[UIViewController attemptRotationToDeviceOrientation];
}
}
}
}
请注意,这仅适用于ios 5.0及更高版本,并且您将收到不支持setOrientation的警告,但它运行良好
答案 3 :(得分:-1)
您可以尝试的一种方法是强制您的设备认为它处于纵向模式。为此,请尝试使用:
[[UIDevice currentDevice] setOrientation:UIDeviceOrientationPortrait];
如果您不希望自己的设备在不播放电影时显示横向,则还需要在上面显示的代码中添加一些逻辑,以便在播放电影时仅更改为横向。