在我的应用程序中,我有一个 UIWebview ,其中显示了 Video Link 列表。单击其中一个链接,MPMoviePlayer 会自行启动。但在全屏模式下,它不会在需要时旋转。
现在如何旋转它,因为我在 webview 中无法控制它。
在我的应用程序中,我有一个 UIWebview ,其中显示了 Video Link 列表。单击其中一个链接,MPMoviePlayer 会自行启动。但在全屏模式下,它不会在需要时旋转。
现在如何旋转它,因为我在 webview 中无法控制它。
如果您使用的是 IOS 6,请使用- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {}
,因为 shouldautorotate 不再适用于 ios 6。
将此方法发布在AppDelegate.m
文件中..
-(NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
{
return UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskLandscapeLeft | UIInterfaceOrientationMaskLandscapeRight;
}
对于 iOS6,您还应该确保在 info.plist 上支持的界面方向键中添加了横向。