MPMoviePlayer不旋转

时间:2012-12-03 06:04:00

标签: iphone ios ios5 mpmovieplayer

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

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

3 个答案:

答案 0 :(得分:2)

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

答案 1 :(得分:0)

AppDelegate.m档案中发布此方法..

    -(NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
    {
         return UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskLandscapeLeft | UIInterfaceOrientationMaskLandscapeRight;    
    }

答案 2 :(得分:0)

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