0

在我的应用程序中,我有一个 UIWebview ,其中显示了 Video Link 列表。单击其中一个链接,MPMoviePlayer 会自行启动。但在全屏模式下,它不会在需要时旋转。

现在如何旋转它,因为我在 webview 中无法控制它。

4

3 回答 3

2

如果您使用的是 IOS 6,请使用- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {} ,因为 shouldautorotate 不再适用于 ios 6。

于 2012-12-03T06:27:27.450 回答
0

将此方法发布在AppDelegate.m 文件中..

    -(NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
    {
         return UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskLandscapeLeft | UIInterfaceOrientationMaskLandscapeRight;    
    }
于 2012-12-03T08:59:57.113 回答
0

对于 iOS6,您还应该确保在 info.plist 上支持的界面方向键中添加了横向。

于 2012-12-04T07:04:08.517 回答