supportedInterfaceOrientationsForWindow不适用于IOS 7?

时间:2013-11-24 11:48:29

标签: ios objective-c uiinterfaceorientation

我的应用仅在Portrait中可见。主ViewController没问题。但MPMoviePlayerController适用于所有方向。

这是我的代码,适用于IOS6。但现在它不适用于IOS7

- (NSUInteger) application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window {
    if ([[self.window.subviews.lastObject class].description isEqualToString:@"MPMovieView"] || [[self.window.subviews.lastObject class].description isEqualToString:@"MPSwipableView"]) {
        return UIInterfaceOrientationMaskAllButUpsideDown;
    }
    else {
        return UIInterfaceOrientationMaskPortrait;
    }
}

请帮助..

感谢。

0 个答案:

没有答案