我的应用仅在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;
}
}
请帮助..
感谢。