4

我有一个通用的横向模式应用程序。SKStoreProductViewController 在 iPad 上运行良好。但在 iphone ios 7 上崩溃。即使我将 SKStoreProductViewController 设置为在 iPhone 上纵向显示。

- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {
   if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) {
       NSLog(@"iphone portrait");
       return UIInterfaceOrientationPortrait;
   }
   else
       return [super preferredInterfaceOrientationForPresentation];
}

SKStoreProductViewController 在 iphone iOS 7 上显示为纵向,但是当我旋转手机时,它崩溃了。我收到错误消息说:

*由于未捕获的异常“UIApplicationInvalidInterfaceOrientation”而终止应用程序,原因:“支持的方向与应用程序没有共同的方向,并且 shouldAutorotate 正在返回 YES”

任何人都知道如何解决这个问题?
谢谢

4

1 回答 1

10

如果应用程序和 ViewController 没有共同的界面方向,您应该自动旋转以返回 NO。这是我的解决方案:

子类 SKStoreProductViewController 并使用以下内容覆盖 -shouldAutorotate:

- (BOOL)shouldAutorotate {
    UIInterfaceOrientationMask applicationSupportedOrientations = [[UIApplication sharedApplication] supportedInterfaceOrientationsForWindow:[[UIApplication sharedApplication] keyWindow]];
    UIInterfaceOrientationMask viewControllerSupportedOrientations = [self supportedInterfaceOrientations];
    return viewControllerSupportedOrientations & applicationSupportedOrientations;
}
于 2015-09-25T18:00:37.180 回答